@appscode/design-system 2.0.41-alpha.8 → 2.0.41-alpha.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/main.scss +0 -1
- package/package.json +1 -1
- package/vue-components/styles/base/utilities/_colors.scss +3 -15
- package/vue-components/styles/base/utilities/_customize-bulma.scss +1 -1
- package/vue-components/styles/base/utilities/_extended.scss +2 -2
- package/vue-components/styles/base/utilities/_global.scss +4 -6
- package/vue-components/styles/base/utilities/_typography.scss +3 -20
- package/vue-components/styles/components/_ac-calendar.scss +1 -1
- package/vue-components/styles/components/_ac-tags.scss +2 -2
- package/vue-components/styles/components/_accordion.scss +1 -1
- package/vue-components/styles/components/_button.scss +4 -29
- package/vue-components/styles/components/_direct-deploy.scss +1 -1
- package/vue-components/styles/components/_dropdown.scss +1 -1
- package/vue-components/styles/components/_getkeeper.scss +1 -1
- package/vue-components/styles/components/_options.scss +3 -3
- package/vue-components/styles/components/_overview-page.scss +1 -1
- package/vue-components/styles/components/_pagination.scss +5 -5
- package/vue-components/styles/components/_preloader.scss +1 -1
- package/vue-components/styles/components/_preview-modal.scss +2 -2
- package/vue-components/styles/components/_progress-bar.scss +7 -7
- package/vue-components/styles/components/_table.scss +13 -13
- package/vue-components/styles/components/_tabs.scss +13 -13
- package/vue-components/styles/components/_terminal.scss +2 -2
- package/vue-components/styles/components/_widget-menu.scss +2 -2
- package/vue-components/styles/components/_wizard.scss +3 -3
- package/vue-components/styles/components/alert/_alert.scss +8 -8
- package/vue-components/styles/components/bbum/_card-team.scss +1 -1
- package/vue-components/styles/components/bbum/_left-sidebar.scss +2 -2
- package/vue-components/styles/components/bbum/_single-post-preview.scss +2 -2
- package/vue-components/styles/components/bbum/_user-profile.scss +2 -2
- package/vue-components/styles/components/cards/_cluster.scss +4 -5
- package/vue-components/styles/components/cards/_info.scss +1 -7
- package/vue-components/styles/components/cards/_monitoring.scss +0 -1
- package/vue-components/styles/components/cards/_org.scss +2 -2
- package/vue-components/styles/components/cards/_payment-card.scss +3 -3
- package/vue-components/styles/components/cards/_vendor.scss +5 -5
- package/vue-components/styles/components/editor/_filtered-file-editor.scss +2 -2
- package/vue-components/styles/components/form-fields/_input-card.scss +4 -4
- package/vue-components/styles/components/form-fields/_input.scss +10 -15
- package/vue-components/styles/components/header/_header.scss +1 -1
- package/vue-components/styles/components/navbar/_menu-content.scss +4 -4
- package/vue-components/styles/components/navbar/_notification.scss +3 -3
- package/vue-components/styles/components/select-box/_ac-select-box.scss +1 -1
- package/vue-components/styles/components/select-box/_multi-select.scss +3 -3
- package/vue-components/styles/components/sidebar/_left-sidebar.scss +2 -2
- package/vue-components/styles/components/sidebar-tabs/_sidebar-tabs.scss +3 -3
- package/vue-components/styles/components/ui-builder/_ui-builder.scss +9 -9
- package/vue-components/styles/components/ui-builder/_vue-open-api.scss +4 -4
- package/vue-components/styles/theme/_appscode.scss +24 -9
- package/vue-components/v2/pagination/Pagination.vue +4 -4
- package/vue-components/v3/header/Header.vue +1 -1
- package/vue-components/v3/navbar/ThemeMode.vue +1 -1
- package/vue-components/v3/navbar/User.vue +71 -128
- package/vue-components/v3/notification/AlertBox.vue +9 -9
- package/vue-components/v3/pagination/Pagination.vue +4 -4
- package/vue-components/v3/sidebar/Steps.vue +3 -3
- package/vue-components/v3/table/InfoTable.vue +1 -1
- package/vue-components/styles/theme/_dark.scss +0 -48
package/main.scss
CHANGED
|
@@ -21,4 +21,3 @@
|
|
|
21
21
|
@import "@/components/vue-components/styles/components/form-fields/input";
|
|
22
22
|
@import "@/components/vue-components/styles/components/ui-builder/vue-open-api";
|
|
23
23
|
@import "@/components/vue-components/styles/components/ui-builder/ui-builder";
|
|
24
|
-
@import "@/components/vue-components/styles/theme/appscode.scss";
|
package/package.json
CHANGED
|
@@ -1,28 +1,16 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--primary-hue: 208;
|
|
3
|
-
--primary-saturation: 77%;
|
|
4
|
-
--primary-light: 40%;
|
|
5
|
-
}
|
|
6
|
-
:root {
|
|
7
|
-
--theme-mode: light;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
1
|
// white and black
|
|
11
2
|
$white-100: hsl(0, 0%, 100%);
|
|
12
3
|
$black-100: hsl(0, 0%, 0%);
|
|
13
4
|
|
|
14
5
|
// primary color guides
|
|
15
|
-
$primary-hue:
|
|
16
|
-
$primary-saturation:
|
|
17
|
-
$primary-light: var(--primary-light);
|
|
18
|
-
$theme-mode: var(--theme-mode);
|
|
19
|
-
|
|
6
|
+
$primary-hue: 208;
|
|
7
|
+
$primary-saturation: 77%;
|
|
20
8
|
$primary-5: hsl($primary-hue, $primary-saturation, 5%);
|
|
21
9
|
$primary-10: hsl($primary-hue, $primary-saturation, 10%);
|
|
22
10
|
$primary-20: hsl($primary-hue, $primary-saturation, 20%);
|
|
23
11
|
$primary-30: hsl($primary-hue, $primary-saturation, 30%);
|
|
24
12
|
$primary-40: hsl($primary-hue, $primary-saturation, 40%);
|
|
25
|
-
$
|
|
13
|
+
$primary: hsl($primary-hue, $primary-saturation, 40%);
|
|
26
14
|
$primary-50: hsl($primary-hue, $primary-saturation, 50%);
|
|
27
15
|
$primary-60: hsl($primary-hue, $primary-saturation, 60%);
|
|
28
16
|
$primary-70: hsl($primary-hue, $primary-saturation, 70%);
|
|
@@ -75,7 +75,7 @@ $weight-bold: 700 !default;
|
|
|
75
75
|
// // Derived-Variables
|
|
76
76
|
|
|
77
77
|
// $primary: $turquoise !default;
|
|
78
|
-
|
|
78
|
+
$primary: $primary !default;
|
|
79
79
|
$info: $blue !default;
|
|
80
80
|
$success: $success !default;
|
|
81
81
|
$warning: $warning !default;
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
border-bottom: solid 1px;
|
|
13
13
|
transition: 0.3s;
|
|
14
14
|
transform: scaleX(0);
|
|
15
|
-
border-color: $
|
|
15
|
+
border-color: $primary;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
&::after {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
border-right: solid 1px;
|
|
27
27
|
transition: 0.3s;
|
|
28
28
|
transform: scaleY(0);
|
|
29
|
-
border-color: $
|
|
29
|
+
border-color: $primary;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
&:hover {
|
|
@@ -154,7 +154,7 @@ hr {
|
|
|
154
154
|
.is-dark-theme {
|
|
155
155
|
.toasted-container {
|
|
156
156
|
i.fa {
|
|
157
|
-
color:
|
|
157
|
+
color: #ffffff !important;
|
|
158
158
|
}
|
|
159
159
|
}
|
|
160
160
|
}
|
|
@@ -486,7 +486,7 @@ $border_color_4: transparent transparent #585d6e transparent;
|
|
|
486
486
|
&.is-button-info {
|
|
487
487
|
.tooltip-inner {
|
|
488
488
|
background: $white-100;
|
|
489
|
-
color: $
|
|
489
|
+
color: $primary;
|
|
490
490
|
border-radius: 4px;
|
|
491
491
|
padding: 5px 20px 4px;
|
|
492
492
|
box-shadow: $ac-shadow-1;
|
|
@@ -663,7 +663,7 @@ body:has(.has-info-content) {
|
|
|
663
663
|
margin-left: auto;
|
|
664
664
|
position: fixed;
|
|
665
665
|
right: 0;
|
|
666
|
-
background:
|
|
666
|
+
background: #fff;
|
|
667
667
|
top: 0;
|
|
668
668
|
z-index: 99999;
|
|
669
669
|
box-shadow: -3px 2px 10px 3px rgba(0, 0, 0, 0.1);
|
|
@@ -675,10 +675,8 @@ body:has(.has-info-content) {
|
|
|
675
675
|
|
|
676
676
|
.tag:not(body) {
|
|
677
677
|
&.is-primary {
|
|
678
|
-
background-color: $ac-primary;
|
|
679
|
-
color: $white-100;
|
|
680
678
|
&.is-light {
|
|
681
|
-
color: $
|
|
679
|
+
color: $primary;
|
|
682
680
|
background-color: $primary-95;
|
|
683
681
|
}
|
|
684
682
|
}
|
|
@@ -6,7 +6,7 @@ $font-paragraph: "Roboto", sans-serif;
|
|
|
6
6
|
|
|
7
7
|
html,
|
|
8
8
|
body {
|
|
9
|
-
background-color:
|
|
9
|
+
background-color: transparent;
|
|
10
10
|
font-family: $font-paragraph;
|
|
11
11
|
font-weight: 400;
|
|
12
12
|
font-size: 13px;
|
|
@@ -87,25 +87,11 @@ h6 {
|
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
.content {
|
|
91
|
-
h1,
|
|
92
|
-
h2,
|
|
93
|
-
h3,
|
|
94
|
-
h4,
|
|
95
|
-
h5,
|
|
96
|
-
h6 {
|
|
97
|
-
color: $color-heading;
|
|
98
|
-
}
|
|
99
|
-
p {
|
|
100
|
-
color: $color-text;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
|
|
104
90
|
a:not(.ac-button) {
|
|
105
91
|
font-family: $font-paragraph;
|
|
106
|
-
color: $
|
|
92
|
+
color: $primary;
|
|
107
93
|
&:hover {
|
|
108
|
-
color: $
|
|
94
|
+
color: $primary;
|
|
109
95
|
}
|
|
110
96
|
}
|
|
111
97
|
|
|
@@ -152,6 +138,3 @@ strong {
|
|
|
152
138
|
.material-icons {
|
|
153
139
|
font-size: 1em;
|
|
154
140
|
}
|
|
155
|
-
.has-text-primary {
|
|
156
|
-
color: $ac-primary;
|
|
157
|
-
}
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
// }
|
|
34
34
|
|
|
35
35
|
// &.is-primary {
|
|
36
|
-
// background-color: $
|
|
36
|
+
// background-color: $primary;
|
|
37
37
|
// color: $white-100;
|
|
38
38
|
|
|
39
39
|
// &.is-light {
|
|
40
40
|
// background-color: rgba(25, 113, 189, 0.2);
|
|
41
|
-
// color: $
|
|
41
|
+
// color: $primary;
|
|
42
42
|
// }
|
|
43
43
|
// }
|
|
44
44
|
|
|
@@ -1,41 +1,16 @@
|
|
|
1
1
|
.button {
|
|
2
|
-
color: $color-text;
|
|
3
|
-
background-color: $white-100;
|
|
4
|
-
|
|
5
2
|
&.ac-button {
|
|
6
3
|
padding: 8px 16px;
|
|
7
4
|
font-weight: 500;
|
|
8
5
|
line-height: 1;
|
|
9
6
|
|
|
10
7
|
&.is-primary {
|
|
11
|
-
background-color: $ac-primary;
|
|
12
|
-
&:hover {
|
|
13
|
-
background-color: $primary-30;
|
|
14
|
-
}
|
|
15
8
|
&.is-light {
|
|
16
|
-
color: $
|
|
17
|
-
background-color: $primary-95;
|
|
18
|
-
&:hover {
|
|
19
|
-
background-color: $primary-90;
|
|
20
|
-
}
|
|
9
|
+
color: $primary;
|
|
21
10
|
&:focus:not(:hover) {
|
|
22
11
|
color: inherit;
|
|
23
12
|
}
|
|
24
13
|
}
|
|
25
|
-
&:disabled:not(.is-light) {
|
|
26
|
-
background-color: $ac-primary;
|
|
27
|
-
border-color: $ac-primary;
|
|
28
|
-
}
|
|
29
|
-
&.is-outlined {
|
|
30
|
-
border-color: $ac-primary;
|
|
31
|
-
color: $ac-primary;
|
|
32
|
-
background-color: transparent;
|
|
33
|
-
&:hover {
|
|
34
|
-
border-color: $primary-30;
|
|
35
|
-
background-color: $ac-primary;
|
|
36
|
-
color: $white-100;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
14
|
}
|
|
40
15
|
&.is-warning {
|
|
41
16
|
&.is-light {
|
|
@@ -96,7 +71,7 @@
|
|
|
96
71
|
}
|
|
97
72
|
}
|
|
98
73
|
button.is-primary {
|
|
99
|
-
background-color: $
|
|
74
|
+
background-color: $primary;
|
|
100
75
|
}
|
|
101
76
|
.up-down-buttons {
|
|
102
77
|
border-radius: 4px;
|
|
@@ -110,7 +85,7 @@ button.is-primary {
|
|
|
110
85
|
height: 18px;
|
|
111
86
|
cursor: pointer;
|
|
112
87
|
border: none;
|
|
113
|
-
color: $
|
|
88
|
+
color: $primary;
|
|
114
89
|
background-color: $color-border;
|
|
115
90
|
transition: 0.3s ease-in-out;
|
|
116
91
|
margin: 0 !important;
|
|
@@ -119,7 +94,7 @@ button.is-primary {
|
|
|
119
94
|
background-color: $primary-80;
|
|
120
95
|
}
|
|
121
96
|
&.is-primary {
|
|
122
|
-
background-color: $
|
|
97
|
+
background-color: $primary;
|
|
123
98
|
color: $white-100;
|
|
124
99
|
&:hover {
|
|
125
100
|
background-color: $primary-30;
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
transition: 0.3 ease-in-out;
|
|
63
63
|
|
|
64
64
|
&:hover {
|
|
65
|
-
color: $
|
|
65
|
+
color: $primary;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
span {
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
|
|
105
105
|
&:hover {
|
|
106
106
|
background-color: $color-border;
|
|
107
|
-
color: $
|
|
107
|
+
color: $primary;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
span {
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
|
|
127
127
|
&:hover {
|
|
128
128
|
background-color: $color-border;
|
|
129
|
-
color: $
|
|
129
|
+
color: $primary !important;
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
// border-radius: 4px;
|
|
17
17
|
|
|
18
18
|
// &:hover {
|
|
19
|
-
// background-color: $
|
|
19
|
+
// background-color: $primary;
|
|
20
20
|
// color: $white-100;
|
|
21
21
|
// border: 1px solid
|
|
22
22
|
// hsla(
|
|
@@ -72,16 +72,16 @@
|
|
|
72
72
|
// }
|
|
73
73
|
|
|
74
74
|
// ul > li > a.previous {
|
|
75
|
-
// border: 1px solid $
|
|
75
|
+
// border: 1px solid $primary;
|
|
76
76
|
// background-color: $color-border;
|
|
77
|
-
// color: $
|
|
77
|
+
// color: $primary;
|
|
78
78
|
|
|
79
79
|
// }
|
|
80
80
|
|
|
81
81
|
// ul > li > a.next {
|
|
82
|
-
// border: 1px solid $
|
|
82
|
+
// border: 1px solid $primary;
|
|
83
83
|
// background-color: $color-border;
|
|
84
|
-
// color: $
|
|
84
|
+
// color: $primary;
|
|
85
85
|
|
|
86
86
|
// }
|
|
87
87
|
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
&:hover {
|
|
21
|
-
background-color: $
|
|
21
|
+
background-color: $primary;
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
li {
|
|
109
109
|
&.is-active {
|
|
110
110
|
a {
|
|
111
|
-
background-color: $
|
|
111
|
+
background-color: $primary;
|
|
112
112
|
border-radius: 5px;
|
|
113
113
|
color: $white-100;
|
|
114
114
|
padding: 10px 10px;
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
border: 1px solid $primary-10;
|
|
19
19
|
border-radius: 10px;
|
|
20
20
|
box-shadow: 0 0 2px $primary-10;
|
|
21
|
-
color: $
|
|
21
|
+
color: $primary;
|
|
22
22
|
display: inline-flex;
|
|
23
23
|
font-family: sans-serif;
|
|
24
24
|
font-weight: bold;
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
|
|
91
91
|
&::-webkit-progress-value {
|
|
92
92
|
border-radius: 5px;
|
|
93
|
-
background-color: $
|
|
93
|
+
background-color: $primary;
|
|
94
94
|
background-image: linear-gradient(
|
|
95
95
|
45deg,
|
|
96
96
|
rgba(255, 255, 255, 0.15) 25%,
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
|
|
107
107
|
&::-moz-progress-bar {
|
|
108
108
|
border-radius: 5px;
|
|
109
|
-
background-color: $
|
|
109
|
+
background-color: $primary;
|
|
110
110
|
background-image: linear-gradient(
|
|
111
111
|
45deg,
|
|
112
112
|
rgba(255, 255, 255, 0.15) 25%,
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
|
|
123
123
|
&::-ms-fill {
|
|
124
124
|
border-radius: 5px;
|
|
125
|
-
background-color: $
|
|
125
|
+
background-color: $primary;
|
|
126
126
|
background-image: linear-gradient(
|
|
127
127
|
45deg,
|
|
128
128
|
rgba(255, 255, 255, 0.15) 25%,
|
|
@@ -224,19 +224,19 @@
|
|
|
224
224
|
|
|
225
225
|
&::-webkit-progress-value {
|
|
226
226
|
border-radius: 5px;
|
|
227
|
-
background-color: $
|
|
227
|
+
background-color: $primary;
|
|
228
228
|
background-size: 10px 10px;
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
&::-moz-progress-bar {
|
|
232
232
|
border-radius: 5px;
|
|
233
|
-
background-color: $
|
|
233
|
+
background-color: $primary;
|
|
234
234
|
background-size: 10px 10px;
|
|
235
235
|
}
|
|
236
236
|
|
|
237
237
|
&::-ms-fill {
|
|
238
238
|
border-radius: 5px;
|
|
239
|
-
background-color: $
|
|
239
|
+
background-color: $primary;
|
|
240
240
|
background-size: 10px 10px;
|
|
241
241
|
border: none;
|
|
242
242
|
}
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
tbody {
|
|
66
66
|
&.is-selected {
|
|
67
67
|
transform: matrix(1, 0, 0, 1, 0, 0) !important;
|
|
68
|
-
box-shadow: inset 0 0 0 1px $
|
|
68
|
+
box-shadow: inset 0 0 0 1px $primary;
|
|
69
69
|
border-radius: 4px;
|
|
70
70
|
border-bottom: none;
|
|
71
71
|
color: $black-5;
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
&.is-selected {
|
|
80
80
|
background-color: $primary-97 !important;
|
|
81
81
|
transform: matrix(1, 0, 0, 1, 0, 0) !important;
|
|
82
|
-
box-shadow: inset 0 0 0 1.2px $
|
|
82
|
+
box-shadow: inset 0 0 0 1.2px $primary;
|
|
83
83
|
border-radius: 4px;
|
|
84
84
|
border-bottom: none;
|
|
85
85
|
color: $black-5;
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
&:hover {
|
|
91
91
|
background-color: $primary-95 !important;
|
|
92
92
|
transform: matrix(1, 0, 0, 1, 0, 0) !important;
|
|
93
|
-
box-shadow: inset 0 0 0 1.2px $
|
|
93
|
+
box-shadow: inset 0 0 0 1.2px $primary !important;
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
96
|
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
border: none;
|
|
107
107
|
|
|
108
108
|
a:not(.tag a) {
|
|
109
|
-
color: $
|
|
109
|
+
color: $primary;
|
|
110
110
|
font-weight: 500 !important;
|
|
111
111
|
transition: 0.3s ease-in-out;
|
|
112
112
|
font-weight: 400;
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
.tags {
|
|
116
116
|
.tag {
|
|
117
117
|
a {
|
|
118
|
-
color: $
|
|
118
|
+
color: $primary;
|
|
119
119
|
transition: 0.3s ease-in-out;
|
|
120
120
|
font-weight: 500;
|
|
121
121
|
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
|
|
143
143
|
i.fa {
|
|
144
144
|
position: absolute;
|
|
145
|
-
background-color: $
|
|
145
|
+
background-color: $primary;
|
|
146
146
|
color: $white-100;
|
|
147
147
|
font-size: 11px;
|
|
148
148
|
width: 15px;
|
|
@@ -291,8 +291,8 @@
|
|
|
291
291
|
}
|
|
292
292
|
|
|
293
293
|
&:checked + label::before {
|
|
294
|
-
background-color: $
|
|
295
|
-
border-color: $
|
|
294
|
+
background-color: $primary;
|
|
295
|
+
border-color: $primary;
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
&:checked + label::after {
|
|
@@ -302,8 +302,8 @@
|
|
|
302
302
|
}
|
|
303
303
|
|
|
304
304
|
.is-checkradio[type="checkbox"].ac-checkbox:checked + label::before {
|
|
305
|
-
background-color: $
|
|
306
|
-
border-color: $
|
|
305
|
+
background-color: $primary;
|
|
306
|
+
border-color: $primary;
|
|
307
307
|
}
|
|
308
308
|
|
|
309
309
|
.is-checkradio[type="checkbox"] + label::before,
|
|
@@ -370,7 +370,7 @@
|
|
|
370
370
|
}
|
|
371
371
|
|
|
372
372
|
&:hover {
|
|
373
|
-
background-color: $
|
|
373
|
+
background-color: $primary;
|
|
374
374
|
|
|
375
375
|
td {
|
|
376
376
|
color: $white-100;
|
|
@@ -383,14 +383,14 @@
|
|
|
383
383
|
|
|
384
384
|
.table.ac-table tbody tr:hover td a:not(.tag a) {
|
|
385
385
|
text-decoration: underline;
|
|
386
|
-
color: $
|
|
386
|
+
color: $primary;
|
|
387
387
|
}
|
|
388
388
|
|
|
389
389
|
// table inner shadow
|
|
390
390
|
.table-inner-shadow {
|
|
391
391
|
border-radius: 0px;
|
|
392
392
|
background: $color-border;
|
|
393
|
-
box-shadow: inset 5px 5px 10px #e3e6e9, inset -5px -5px 10px
|
|
393
|
+
box-shadow: inset 5px 5px 10px #e3e6e9, inset -5px -5px 10px #ffffff;
|
|
394
394
|
}
|
|
395
395
|
|
|
396
396
|
@keyframes expand {
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
// &.is-active {
|
|
14
14
|
// a {
|
|
15
15
|
// font-weight: 500;
|
|
16
|
-
// border-bottom-color: $
|
|
17
|
-
// border-bottom: 2px solid $
|
|
16
|
+
// border-bottom-color: $primary;
|
|
17
|
+
// border-bottom: 2px solid $primary !important;
|
|
18
18
|
// border-width: 2px;
|
|
19
19
|
// }
|
|
20
20
|
// }
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
// padding: 6px 16px;
|
|
29
29
|
|
|
30
30
|
// &:hover {
|
|
31
|
-
// border-bottom-color: $
|
|
31
|
+
// border-bottom-color: $primary;
|
|
32
32
|
// }
|
|
33
33
|
// }
|
|
34
34
|
// }
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
// position: relative;
|
|
57
57
|
// border-color: $color-border;
|
|
58
58
|
// z-index: 1;
|
|
59
|
-
// color: $
|
|
59
|
+
// color: $primary;
|
|
60
60
|
|
|
61
61
|
// &:after {
|
|
62
62
|
// position: absolute;
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
// width: 100%;
|
|
67
67
|
// height: 4px;
|
|
68
68
|
// border-radius: 4px 4px 0 0;
|
|
69
|
-
// background-color: $
|
|
69
|
+
// background-color: $primary;
|
|
70
70
|
// }
|
|
71
71
|
|
|
72
72
|
// a {
|
|
@@ -131,10 +131,10 @@
|
|
|
131
131
|
// &.is-active {
|
|
132
132
|
// a {
|
|
133
133
|
// color: $white-100;
|
|
134
|
-
// background-color: $
|
|
134
|
+
// background-color: $primary;
|
|
135
135
|
|
|
136
136
|
// &:hover {
|
|
137
|
-
// background-color: $
|
|
137
|
+
// background-color: $primary;
|
|
138
138
|
// }
|
|
139
139
|
// }
|
|
140
140
|
// }
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
// li {
|
|
163
163
|
// &.is-active {
|
|
164
164
|
// a {
|
|
165
|
-
// border-bottom: 3px solid $
|
|
165
|
+
// border-bottom: 3px solid $primary !important;
|
|
166
166
|
// }
|
|
167
167
|
// }
|
|
168
168
|
// }
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
// a {
|
|
183
183
|
// border-color: $color-border;
|
|
184
184
|
// background-color: $white-100;
|
|
185
|
-
// color: $
|
|
185
|
+
// color: $primary;
|
|
186
186
|
// }
|
|
187
187
|
// }
|
|
188
188
|
// }
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
// &.is-active {
|
|
216
216
|
// a {
|
|
217
217
|
// background-color: $color-border;
|
|
218
|
-
// color: $
|
|
218
|
+
// color: $primary;
|
|
219
219
|
// }
|
|
220
220
|
// }
|
|
221
221
|
// }
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
// }
|
|
227
227
|
|
|
228
228
|
// .tabs li.is-active a {
|
|
229
|
-
// color: $
|
|
229
|
+
// color: $primary;
|
|
230
230
|
// }
|
|
231
231
|
|
|
232
232
|
// .no-data-available {
|
|
@@ -329,8 +329,8 @@
|
|
|
329
329
|
li {
|
|
330
330
|
&.is-active {
|
|
331
331
|
a {
|
|
332
|
-
border-bottom-color: $
|
|
333
|
-
color: $
|
|
332
|
+
border-bottom-color: $primary;
|
|
333
|
+
color: $primary;
|
|
334
334
|
}
|
|
335
335
|
}
|
|
336
336
|
}
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
&:hover {
|
|
189
|
-
color: $
|
|
189
|
+
color: $primary !important;
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
192
|
}
|
|
@@ -233,7 +233,7 @@
|
|
|
233
233
|
text-align: center;
|
|
234
234
|
padding: 4px 20px;
|
|
235
235
|
border-radius: 4px;
|
|
236
|
-
color:
|
|
236
|
+
color: #ffffff !important;
|
|
237
237
|
text-transform: uppercase;
|
|
238
238
|
|
|
239
239
|
&.is-success {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
// &.is-active {
|
|
17
17
|
// background-color: transparent;
|
|
18
|
-
// color: $
|
|
18
|
+
// color: $primary;
|
|
19
19
|
// }
|
|
20
20
|
|
|
21
21
|
// .fa {
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
// color: $color-heading;
|
|
95
95
|
|
|
96
96
|
// &:hover {
|
|
97
|
-
// color: $
|
|
97
|
+
// color: $primary;
|
|
98
98
|
// background-color: transparent;
|
|
99
99
|
// }
|
|
100
100
|
// }
|