Skip to content
Snippets Groups Projects
Commit 9a862c72 authored by Peter Polman's avatar Peter Polman
Browse files

DS-2735 - Theming fixes

parent 52a3f2e3
No related branches found
No related tags found
No related merge requests found
.joyride-close-tip {
color: white;
}
.joyride-modal-bg {
background: rgba(0, 0, 0, 0.5);
}
.joyride-nub.top {
border-bottom: 28px solid #333;
}
.joyride-nub.bottom {
border-top: 28px solid #333;
}
.joyride-nub.left {
border-right: 28px solid #333;
}
.joyride-nub.right {
border-left: 28px solid #333;
}
.joyride-tip-guide {
background: #333;
color: white;
border-radius: 10px;
}
.joyride-content-wrapper {
border-radius: 10px;
}
......@@ -18,4 +18,5 @@ $enable-rounded: true;
@import 'variables/navbar';
@import 'variables/pagination';
@import 'variables/popover';
@import 'variables/tour';
@import 'variables/tooltip';
$tour-background-color: #333;
$tour-text-color: white;
$tour-backdrop-color: rgba(0,0,0,0.5);
@import 'settings';
.joyride-close-tip {
color: $tour-text-color;
}
.joyride-modal-bg {
background: $tour-backdrop-color;
}
.joyride-nub.top {
border-bottom: 28px solid $tour-background-color;
}
.joyride-nub.bottom {
border-top: 28px solid $tour-background-color;
}
.joyride-nub.left {
border-right: 28px solid $tour-background-color;
}
.joyride-nub.right {
border-left: 28px solid $tour-background-color;
}
.joyride-tip-guide {
background: $tour-background-color;
color: $tour-text-color;
border-radius: $border-radius-base;
}
.joyride-content-wrapper {
border-radius: $border-radius-base;
}
......@@ -54,6 +54,8 @@ libraries-extend:
- socialblue/navbar
socialbase/teaser:
- socialblue/teaser
socialbase/tour:
- socialblue/tour
# Extend Organisms
socialbase/comment:
- socialblue/comment
......
......@@ -117,6 +117,11 @@ teaser:
theme:
assets/css/teaser.css: {}
tour:
css:
theme:
assets/css/tour.css: {}
### 2.3 Organisms
comment:
css:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment