2016-12-22 13:17:28 +03:00
|
|
|
/* Component containers
|
|
|
|
----------------------------------*/
|
|
|
|
.ui-widget-content {
|
2017-09-02 16:45:29 +03:00
|
|
|
border: 1px solid nc-darken($color-main-background, 20%);
|
|
|
|
background: $color-main-background none;
|
|
|
|
color: $color-main-text;
|
2016-12-22 13:17:28 +03:00
|
|
|
}
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-widget-content a {
|
2017-09-02 16:45:29 +03:00
|
|
|
color: $color-main-text;
|
2017-01-10 12:39:52 +03:00
|
|
|
}
|
2016-12-22 13:17:28 +03:00
|
|
|
.ui-widget-header {
|
2017-09-02 16:45:29 +03:00
|
|
|
border: none;
|
2017-09-03 19:32:44 +03:00
|
|
|
color: $color-main-text;
|
2017-01-10 12:39:52 +03:00
|
|
|
}
|
|
|
|
.ui-widget-header a {
|
2017-09-03 19:32:44 +03:00
|
|
|
color: $color-main-text;
|
2016-12-22 13:17:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Interaction states
|
|
|
|
----------------------------------*/
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-state-default,
|
|
|
|
.ui-widget-content .ui-state-default,
|
|
|
|
.ui-widget-header .ui-state-default {
|
2017-09-02 16:45:29 +03:00
|
|
|
border: 1px solid nc-darken($color-main-background, 20%);
|
|
|
|
background: $color-main-background none;
|
2016-12-22 13:17:28 +03:00
|
|
|
font-weight: bold;
|
|
|
|
color: #555;
|
|
|
|
}
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-state-default a,
|
|
|
|
.ui-state-default a:link,
|
|
|
|
.ui-state-default a:visited {
|
2016-12-22 13:17:28 +03:00
|
|
|
color: #555;
|
|
|
|
}
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-state-hover,
|
|
|
|
.ui-widget-content .ui-state-hover,
|
|
|
|
.ui-widget-header .ui-state-hover,
|
|
|
|
.ui-state-focus,
|
|
|
|
.ui-widget-content .ui-state-focus,
|
|
|
|
.ui-widget-header .ui-state-focus {
|
2016-12-22 13:17:28 +03:00
|
|
|
border: 1px solid #ddd;
|
2017-09-02 16:45:29 +03:00
|
|
|
background: $color-main-background none;
|
2016-12-22 13:17:28 +03:00
|
|
|
font-weight: bold;
|
2017-09-02 16:45:29 +03:00
|
|
|
color: $color-main-text;
|
2016-12-22 13:17:28 +03:00
|
|
|
}
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-state-hover a,
|
|
|
|
.ui-state-hover a:hover,
|
|
|
|
.ui-state-hover a:link,
|
|
|
|
.ui-state-hover a:visited {
|
2017-09-02 16:45:29 +03:00
|
|
|
color: $color-main-text;
|
2016-12-22 13:17:28 +03:00
|
|
|
}
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-state-active,
|
|
|
|
.ui-widget-content .ui-state-active,
|
|
|
|
.ui-widget-header .ui-state-active {
|
2017-09-02 16:45:29 +03:00
|
|
|
border: 1px solid $color-primary;
|
|
|
|
background: $color-main-background none;
|
2016-12-22 13:17:28 +03:00
|
|
|
font-weight: bold;
|
2017-09-03 19:32:44 +03:00
|
|
|
color: $color-main-text;
|
2016-12-22 13:17:28 +03:00
|
|
|
}
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-state-active a,
|
|
|
|
.ui-state-active a:link,
|
|
|
|
.ui-state-active a:visited {
|
2017-09-03 19:32:44 +03:00
|
|
|
color: $color-main-text;
|
2016-12-22 13:17:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Interaction Cues
|
|
|
|
----------------------------------*/
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-state-highlight,
|
|
|
|
.ui-widget-content .ui-state-highlight,
|
|
|
|
.ui-widget-header .ui-state-highlight {
|
2017-09-02 16:45:29 +03:00
|
|
|
border: 1px solid $color-main-background;
|
|
|
|
background: $color-main-background none;
|
|
|
|
color: nc-lighten($color-main-text, 30%);
|
2016-12-22 13:17:28 +03:00
|
|
|
}
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-state-highlight a,
|
|
|
|
.ui-widget-content .ui-state-highlight a,
|
|
|
|
.ui-widget-header .ui-state-highlight a {
|
2017-09-02 16:45:29 +03:00
|
|
|
color: nc-lighten($color-main-text, 30%);
|
2016-12-22 13:17:28 +03:00
|
|
|
}
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-state-error,
|
|
|
|
.ui-widget-content .ui-state-error,
|
|
|
|
.ui-widget-header .ui-state-error {
|
2017-09-02 16:45:29 +03:00
|
|
|
border: $color-error;
|
|
|
|
background: $color-error none;
|
2016-12-22 13:17:28 +03:00
|
|
|
color: #ffffff;
|
|
|
|
}
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-state-error a,
|
|
|
|
.ui-widget-content .ui-state-error a,
|
|
|
|
.ui-widget-header .ui-state-error a {
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
.ui-state-error-text,
|
|
|
|
.ui-widget-content .ui-state-error-text,
|
|
|
|
.ui-widget-header .ui-state-error-text {
|
2016-12-22 13:17:28 +03:00
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Icons
|
|
|
|
----------------------------------*/
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-state-default .ui-icon {
|
|
|
|
background-image: url('images/ui-icons_1d2d44_256x240.png');
|
|
|
|
}
|
|
|
|
.ui-state-hover .ui-icon,
|
|
|
|
.ui-state-focus .ui-icon {
|
|
|
|
background-image: url('images/ui-icons_1d2d44_256x240.png');
|
|
|
|
}
|
|
|
|
.ui-state-active .ui-icon {
|
2016-12-22 13:17:28 +03:00
|
|
|
background-image: url('images/ui-icons_1d2d44_256x240.png');
|
|
|
|
}
|
|
|
|
.ui-state-highlight .ui-icon {
|
|
|
|
background-image: url('images/ui-icons_ffffff_256x240.png');
|
|
|
|
}
|
2017-01-10 12:39:52 +03:00
|
|
|
.ui-state-error .ui-icon,
|
|
|
|
.ui-state-error-text .ui-icon {
|
2016-12-22 13:17:28 +03:00
|
|
|
background-image: url('images/ui-icons_ffd27a_256x240.png');
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Misc visuals
|
|
|
|
----------------------------------*/
|
|
|
|
/* Overlays */
|
|
|
|
.ui-widget-overlay {
|
|
|
|
background: #666666 url('images/ui-bg_diagonals-thick_20_666666_40x40.png') 50% 50% repeat;
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
.ui-widget-shadow {
|
|
|
|
margin: -5px 0 0 -5px;
|
|
|
|
padding: 5px;
|
|
|
|
background: #000000 url('images/ui-bg_flat_10_000000_40x100.png') 50% 50% repeat-x;
|
|
|
|
opacity: .2;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
2017-09-02 16:45:29 +03:00
|
|
|
/* Tabs customizations */
|
|
|
|
.ui-tabs {
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
.ui-tabs-nav.ui-corner-all {
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-tabs-nav {
|
|
|
|
background: none;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
.ui-state-default {
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid transparent;
|
|
|
|
font-weight: normal;
|
|
|
|
margin: 0 !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-state-hover,
|
|
|
|
.ui-state-active {
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid $color-main-text;
|
2017-09-03 19:32:44 +03:00
|
|
|
color: $color-main-text;
|
2017-09-02 16:45:29 +03:00
|
|
|
a, a:link, a:hover, a:visited {
|
2017-09-03 19:32:44 +03:00
|
|
|
color: $color-main-text;
|
2017-09-02 16:45:29 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.ui-state-active {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
2016-12-22 13:17:28 +03:00
|
|
|
}
|
2017-09-02 16:45:29 +03:00
|
|
|
|
|
|
|
/* Select menus */
|
|
|
|
.ui-autocomplete {
|
|
|
|
&.ui-menu {
|
|
|
|
padding: 0;
|
|
|
|
.ui-menu-item a {
|
|
|
|
&.ui-state-focus, &.ui-state-active {
|
|
|
|
font-weight: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.ui-widget-content {
|
|
|
|
background: $color-main-background;
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.ui-corner-all {
|
|
|
|
border-radius: 0;
|
|
|
|
border-bottom-left-radius: 3px;
|
|
|
|
border-bottom-right-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
background: inherit;
|
2017-08-11 16:11:47 +03:00
|
|
|
color: $color-primary-element;
|
2017-09-02 16:45:29 +03:00
|
|
|
}
|
2017-09-02 16:50:21 +03:00
|
|
|
}
|
2017-09-06 00:26:28 +03:00
|
|
|
|
|
|
|
.ui-button.primary {
|
|
|
|
background-color: $color-primary;
|
|
|
|
color: $color-primary-text;
|
|
|
|
border: 1px solid $color-primary-text;
|
2017-11-13 18:39:09 +03:00
|
|
|
}
|
|
|
|
|