|
|
|
@ -24,8 +24,8 @@
|
|
|
|
|
background-color: #111111; |
|
|
|
|
border-bottom: 1px solid #565656; |
|
|
|
|
} |
|
|
|
|
[class*="bar-"] [class*="button"] { |
|
|
|
|
line-height: 50px; |
|
|
|
|
[class*="bar-"].bar-header-secondary { |
|
|
|
|
top: 51px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.bar-tab { |
|
|
|
@ -35,6 +35,7 @@
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.title { |
|
|
|
|
position: static; |
|
|
|
|
padding-left: 10px; |
|
|
|
|
line-height: 50px; |
|
|
|
|
color: white; |
|
|
|
@ -46,10 +47,7 @@
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.table-view .table-view-cell { |
|
|
|
|
border-bottom: 0; |
|
|
|
|
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>"); |
|
|
|
|
background-position: 15px 100%; |
|
|
|
|
background-repeat: no-repeat; |
|
|
|
|
border-bottom: 1px solid #565656; |
|
|
|
|
} |
|
|
|
|
.table-view .table-view-cell:last-child { |
|
|
|
|
background-image: none; |
|
|
|
@ -125,110 +123,132 @@ textarea,
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
[class*="button"] { |
|
|
|
|
border: 1px solid white; |
|
|
|
|
border: 1px solid #565656; |
|
|
|
|
color: white; |
|
|
|
|
background-color: transparent; |
|
|
|
|
-webkit-transition: background-color, opacity, color; |
|
|
|
|
transition: background-color, opacity, color; |
|
|
|
|
-webkit-transition-duration: 0.2s; |
|
|
|
|
transition-duration: 0.2s; |
|
|
|
|
-webkit-transition-timing-function: linear; |
|
|
|
|
transition-timing-function: linear; |
|
|
|
|
} |
|
|
|
|
[class*="button"]:active, [class*="button"].active, [class*="button"].button-filled { |
|
|
|
|
background-color: #111111; |
|
|
|
|
border-radius: 3px; |
|
|
|
|
} |
|
|
|
|
[class*="button"]:active, [class*="button"].active { |
|
|
|
|
color: #fff; |
|
|
|
|
background-color: white; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.button-primary { |
|
|
|
|
[class*="bar-"] [class*="button"] { |
|
|
|
|
padding-top: 9px; |
|
|
|
|
padding-bottom: 9px; |
|
|
|
|
} |
|
|
|
|
[class*="bar-"] .button-link { |
|
|
|
|
padding: 0; |
|
|
|
|
color: #33b5e5; |
|
|
|
|
border: 1px solid #33b5e5; |
|
|
|
|
line-height: 50px; |
|
|
|
|
} |
|
|
|
|
[class*="bar-"] .button-link:active, [class*="bar-"] .button-link.active { |
|
|
|
|
color: #1a9bcb; |
|
|
|
|
} |
|
|
|
|
.button-primary:active, .button-primary.active, .button-primary.button-filled { |
|
|
|
|
|
|
|
|
|
.button-primary { |
|
|
|
|
color: #fff; |
|
|
|
|
border: 1px solid #33b5e5; |
|
|
|
|
background-color: #33b5e5; |
|
|
|
|
} |
|
|
|
|
.button-primary:active, .button-primary.active { |
|
|
|
|
border: 1px solid #1a9bcb; |
|
|
|
|
background-color: #1a9bcb; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.button-positive { |
|
|
|
|
color: #81c700; |
|
|
|
|
color: #fff; |
|
|
|
|
border: 1px solid #81c700; |
|
|
|
|
} |
|
|
|
|
.button-positive:active, .button-positive.active, .button-positive.button-filled { |
|
|
|
|
background-color: #81c700; |
|
|
|
|
} |
|
|
|
|
.button-positive:active, .button-positive.active { |
|
|
|
|
border: 1px solid #609400; |
|
|
|
|
background-color: #609400; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.button-negative { |
|
|
|
|
color: #f20754; |
|
|
|
|
color: #fff; |
|
|
|
|
border: 1px solid #f20754; |
|
|
|
|
} |
|
|
|
|
.button-negative:active, .button-negative.active, .button-negative.button-filled { |
|
|
|
|
background-color: #f20754; |
|
|
|
|
} |
|
|
|
|
.button-negative:active, .button-negative.active { |
|
|
|
|
border: 1px solid #c00643; |
|
|
|
|
background-color: #c00643; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.button-link { |
|
|
|
|
color: #33b5e5; |
|
|
|
|
.button-outlined { |
|
|
|
|
background-color: transparent; |
|
|
|
|
} |
|
|
|
|
.button-link:active, .button-link.active { |
|
|
|
|
.button-outlined.button-primary { |
|
|
|
|
color: #33b5e5; |
|
|
|
|
} |
|
|
|
|
.button-outlined.button-positive { |
|
|
|
|
color: #81c700; |
|
|
|
|
} |
|
|
|
|
.button-outlined.button-negative { |
|
|
|
|
color: #f20754; |
|
|
|
|
} |
|
|
|
|
.button-outlined.button-primary:active, .button-outlined.button-positive:active, .button-outlined.button-negative:active { |
|
|
|
|
color: #fff; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.button-link:active, .button-link.active { |
|
|
|
|
.button-link { |
|
|
|
|
color: #33b5e5; |
|
|
|
|
opacity: .3; |
|
|
|
|
background-color: transparent; |
|
|
|
|
border: none; |
|
|
|
|
} |
|
|
|
|
.button-link:active, .button-link.active { |
|
|
|
|
color: #1a9bcb; |
|
|
|
|
background-color: transparent; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.bar-nav [class*="button"] { |
|
|
|
|
.bar-nav .button-link { |
|
|
|
|
color: #33b5e5; |
|
|
|
|
-webkit-transition: opacity 0.2s linear; |
|
|
|
|
transition: opacity 0.2s linear; |
|
|
|
|
} |
|
|
|
|
.bar-nav .button-prev:before, |
|
|
|
|
.bar-nav .button-prev:after, |
|
|
|
|
.bar-nav .button-next:before, |
|
|
|
|
.bar-nav .button-next:after { |
|
|
|
|
background-color: #33b5e5; |
|
|
|
|
.bar-nav .button-link:active { |
|
|
|
|
color: #33b5e5; |
|
|
|
|
opacity: .6; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
[class*="badge"] { |
|
|
|
|
color: white; |
|
|
|
|
} |
|
|
|
|
[class*="badge"].badge-filled { |
|
|
|
|
[class*="badge"].badge-inverted { |
|
|
|
|
color: white; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.badge-primary { |
|
|
|
|
color: #33b5e5; |
|
|
|
|
} |
|
|
|
|
.badge-primary.badge-filled { |
|
|
|
|
color: #fff; |
|
|
|
|
background-color: #33b5e5; |
|
|
|
|
} |
|
|
|
|
.badge-primary.badge-inverted { |
|
|
|
|
color: #33b5e5; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.badge-positive { |
|
|
|
|
color: #81c700; |
|
|
|
|
} |
|
|
|
|
.badge-positive.badge-filled { |
|
|
|
|
color: #fff; |
|
|
|
|
background-color: #81c700; |
|
|
|
|
} |
|
|
|
|
.badge-positive.badge-inverted { |
|
|
|
|
color: #81c700; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.badge-negative { |
|
|
|
|
color: #f20754; |
|
|
|
|
} |
|
|
|
|
.badge-negative.badge-filled { |
|
|
|
|
color: #fff; |
|
|
|
|
background-color: #f20754; |
|
|
|
|
} |
|
|
|
|
.badge-negative.badge-inverted { |
|
|
|
|
color: #f20754; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.segmented-controller { |
|
|
|
|
background-color: transparent; |
|
|
|
|
border: 1px solid #33b5e5; |
|
|
|
|
border-radius: 3px; |
|
|
|
|
} |
|
|
|
|
.segmented-controller li { |
|
|
|
|
border-left: 1px solid #33b5e5; |
|
|
|
|
-webkit-transition: background-color 0.1s linear; |
|
|
|
|
transition: background-color 0.1s linear; |
|
|
|
|
} |
|
|
|
|
.segmented-controller li > a { |
|
|
|
|
padding-top: 9px; |
|
|
|
|
padding-bottom: 10px; |
|
|
|
|
color: #33b5e5; |
|
|
|
|
} |
|
|
|
|
.segmented-controller li.selected { |
|
|
|
@ -237,42 +257,20 @@ textarea,
|
|
|
|
|
|
|
|
|
|
.popover { |
|
|
|
|
border-radius: 12px; |
|
|
|
|
-webkit-transition: -webkit-transform 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out; |
|
|
|
|
transition: -webkit-transform 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out; |
|
|
|
|
} |
|
|
|
|
.popover:after { |
|
|
|
|
border-bottom: 15px solid #111111; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.toggle { |
|
|
|
|
border: 2px solid #e6e6e6; |
|
|
|
|
-webkit-box-shadow: inset 0 0 0 0 #e1e1e1; |
|
|
|
|
box-shadow: inset 0 0 0 0 #e1e1e1; |
|
|
|
|
-webkit-transition-property: box-shadow, border; |
|
|
|
|
transition-property: box-shadow, border; |
|
|
|
|
-webkit-transition-duration: 0.2s; |
|
|
|
|
transition-duration: 0.2s; |
|
|
|
|
} |
|
|
|
|
.toggle .toggle-handle { |
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.2); |
|
|
|
|
-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.08); |
|
|
|
|
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.08); |
|
|
|
|
-webkit-transition-property: -webkit-transform, border, width; |
|
|
|
|
transition-property: -webkit-transform, border, width; |
|
|
|
|
border: 1px solid #565656; |
|
|
|
|
} |
|
|
|
|
.toggle:active .toggle-handle { |
|
|
|
|
width: 35px; |
|
|
|
|
} |
|
|
|
|
.toggle.active { |
|
|
|
|
border: 2px solid #81c700; |
|
|
|
|
background-color: transparent; |
|
|
|
|
-webkit-box-shadow: inset 0 0 0 13px #81c700; |
|
|
|
|
box-shadow: inset 0 0 0 13px #81c700; |
|
|
|
|
} |
|
|
|
|
.toggle.active:active .toggle-handle, |
|
|
|
|
.toggle.active .toggle-handle:active { |
|
|
|
|
-webkit-transform: translate3d(10px, 0, 0) !important; |
|
|
|
|
transform: translate3d(10px, 0, 0) !important; |
|
|
|
|
background-color: #81c700; |
|
|
|
|
} |
|
|
|
|
.toggle.active .toggle-handle { |
|
|
|
|
border-color: #81c700; |
|
|
|
|