implemented #480 to fix #275

This commit is contained in:
FezVrasta 2015-03-16 15:16:54 +01:00
parent ae761b5aec
commit 9bd3c08357
10 changed files with 43 additions and 73 deletions

View File

@ -58469,37 +58469,22 @@ fieldset[disabled] .navbar .btn-link:focus {
}
.popover,
.tooltip-inner {
background: #323232;
color: #FFF;
color: #ececec;
line-height: 1em;
background: rgba(101, 101, 101, 0.9);
border: none;
border-radius: 2px;
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
}
.tooltip,
.tooltip.in {
opacity: 1;
}
.popover.left .arrow:after,
.tooltip.left .arrow:after,
.popover.left .tooltip-arrow,
.tooltip.left .tooltip-arrow {
border-left-color: #323232;
}
.popover.right .arrow:after,
.tooltip.right .arrow:after,
.popover.right .tooltip-arrow,
.tooltip.right .tooltip-arrow {
border-right-color: #323232;
}
.popover.top .arrow:after,
.tooltip.top .arrow:after,
.popover.top .tooltip-arrow,
.tooltip.top .tooltip-arrow {
border-top-color: #323232;
}
.popover.bottom .arrow:after,
.tooltip.bottom .arrow:after,
.popover.bottom .tooltip-arrow,
.tooltip.bottom .tooltip-arrow {
border-bottom-color: #323232;
.popover .arrow,
.tooltip .arrow,
.popover .tooltip-arrow,
.tooltip .tooltip-arrow {
display: none;
}
.mdi,
icon {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

35
dist/css/material.css vendored
View File

@ -6911,37 +6911,22 @@ fieldset[disabled] .navbar .btn-link:focus {
}
.popover,
.tooltip-inner {
background: #323232;
color: #FFF;
color: #ececec;
line-height: 1em;
background: rgba(101, 101, 101, 0.9);
border: none;
border-radius: 2px;
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
}
.tooltip,
.tooltip.in {
opacity: 1;
}
.popover.left .arrow:after,
.tooltip.left .arrow:after,
.popover.left .tooltip-arrow,
.tooltip.left .tooltip-arrow {
border-left-color: #323232;
}
.popover.right .arrow:after,
.tooltip.right .arrow:after,
.popover.right .tooltip-arrow,
.tooltip.right .tooltip-arrow {
border-right-color: #323232;
}
.popover.top .arrow:after,
.tooltip.top .arrow:after,
.popover.top .tooltip-arrow,
.tooltip.top .tooltip-arrow {
border-top-color: #323232;
}
.popover.bottom .arrow:after,
.tooltip.bottom .arrow:after,
.popover.bottom .tooltip-arrow,
.tooltip.bottom .tooltip-arrow {
border-bottom-color: #323232;
.popover .arrow,
.tooltip .arrow,
.popover .tooltip-arrow,
.tooltip .tooltip-arrow {
display: none;
}
.mdi,
icon {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,25 +1,18 @@
.popover, .tooltip-inner {
background: #323232;
color: #FFF;
border-radius: 2px;
color: @popover-color;
line-height: 1em;
background: @popover-background;
border: none;
border-radius: @material-border-radius;
.shadow-z-1();
}
.tooltip, .tooltip.in {
opacity: 1;
opacity: 1;
}
.popover, .tooltip {
&.left .arrow:after, &.left .tooltip-arrow {
border-left-color: #323232;
}
&.right .arrow:after, &.right .tooltip-arrow {
border-right-color: #323232;
}
&.top .arrow:after, &.top .tooltip-arrow {
border-top-color: #323232;
}
&.bottom .arrow:after, &.bottom .tooltip-arrow {
border-bottom-color: #323232;
}
.arrow, .tooltip-arrow {
display: none;
}
}

View File

@ -79,6 +79,9 @@
@progress-warning: @warning;
@progress-danger: @danger;
// Global Material variables
@material-border-radius: 2px;
// Card
@card-body-text: @lightbg-text;
@card-body-background: #fff;
@ -91,3 +94,7 @@
@checkbox-size: 20px;
@checkbox-animation-ripple: 500ms;
@checkbox-animation-check: 0.3s;
// Popovers and Popups
@popover-background: rgba(101, 101, 101, 0.9);
@popover-color: #ececec;