active_frontend 6.6.2 → 7.0.0
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.
- checksums.yaml +4 -4
- data/.gitignore +1 -6
- data/CODE_OF_CONDUCT.md +13 -0
- data/LICENSE.txt +17 -18
- data/README.md +0 -1
- data/active_frontend.gemspec +7 -6
- data/lib/active_frontend/version.rb +1 -1
- data/vendor/assets/javascripts/chart.js +4 -4
- data/vendor/assets/stylesheets/_ad.scss +2 -2
- data/vendor/assets/stylesheets/_alert.scss +9 -9
- data/vendor/assets/stylesheets/_aside.scss +10 -10
- data/vendor/assets/stylesheets/_breadcrumb.scss +4 -4
- data/vendor/assets/stylesheets/_button.scss +189 -93
- data/vendor/assets/stylesheets/_carousel.scss +25 -12
- data/vendor/assets/stylesheets/_code.scss +63 -63
- data/vendor/assets/stylesheets/_colorpicker.scss +2 -2
- data/vendor/assets/stylesheets/_datepicker.scss +9 -9
- data/vendor/assets/stylesheets/_dropdown.scss +8 -8
- data/vendor/assets/stylesheets/_footer.scss +21 -10
- data/vendor/assets/stylesheets/_form.scss +33 -32
- data/vendor/assets/stylesheets/_header.scss +39 -40
- data/vendor/assets/stylesheets/_label_and_badge.scss +32 -32
- data/vendor/assets/stylesheets/_list.scss +8 -7
- data/vendor/assets/stylesheets/_loader.scss +4 -4
- data/vendor/assets/stylesheets/_map.scss +2 -2
- data/vendor/assets/stylesheets/_modal.scss +9 -9
- data/vendor/assets/stylesheets/_nav_and_tab.scss +25 -25
- data/vendor/assets/stylesheets/_navbar.scss +8 -8
- data/vendor/assets/stylesheets/_pagination.scss +5 -5
- data/vendor/assets/stylesheets/_panel.scss +8 -8
- data/vendor/assets/stylesheets/_placeholder.scss +6 -6
- data/vendor/assets/stylesheets/_popover.scss +15 -15
- data/vendor/assets/stylesheets/_progress.scss +3 -3
- data/vendor/assets/stylesheets/_reset.scss +7 -7
- data/vendor/assets/stylesheets/_sidebar.scss +11 -11
- data/vendor/assets/stylesheets/_spinner.scss +19 -19
- data/vendor/assets/stylesheets/_swoggle.scss +21 -21
- data/vendor/assets/stylesheets/_table.scss +12 -12
- data/vendor/assets/stylesheets/_timepicker.scss +6 -6
- data/vendor/assets/stylesheets/_tooltip.scss +7 -7
- data/vendor/assets/stylesheets/_trunk.scss +7 -7
- data/vendor/assets/stylesheets/_typeahead.scss +1 -1
- data/vendor/assets/stylesheets/_typography.scss +19 -13
- data/vendor/assets/stylesheets/activefrontend.scss +22 -1
- metadata +13 -12
@@ -13,15 +13,15 @@
|
|
13
13
|
to { background-position: 0 0; }
|
14
14
|
}
|
15
15
|
.progress {
|
16
|
-
background:
|
16
|
+
background: $color-haze-light;
|
17
17
|
border-radius: 500px;
|
18
18
|
height: 25px;
|
19
19
|
overflow: hidden;
|
20
20
|
}
|
21
21
|
.progress > .bar {
|
22
|
-
background: $primary
|
22
|
+
background: $color-primary;
|
23
23
|
box-sizing: border-box;
|
24
|
-
color:
|
24
|
+
color: $color-white;
|
25
25
|
float: left;
|
26
26
|
font-size: 13px;
|
27
27
|
height: 100%;
|
@@ -52,7 +52,7 @@ h6 {
|
|
52
52
|
}
|
53
53
|
abbr,
|
54
54
|
acronym {
|
55
|
-
border-bottom: 1px dotted
|
55
|
+
border-bottom: 1px dotted $color-black;
|
56
56
|
font-variant: normal;
|
57
57
|
}
|
58
58
|
caption,
|
@@ -74,8 +74,8 @@ select {
|
|
74
74
|
}
|
75
75
|
html,
|
76
76
|
body {
|
77
|
-
background:
|
78
|
-
color:
|
77
|
+
background: $color-white;
|
78
|
+
color: $color-black;
|
79
79
|
font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
|
80
80
|
font-size: 100%;
|
81
81
|
-webkit-font-smoothing: antialiased;
|
@@ -90,10 +90,10 @@ body {
|
|
90
90
|
text-size-adjust: 100%;
|
91
91
|
}
|
92
92
|
::-moz-selection {
|
93
|
-
background: $primary
|
94
|
-
color:
|
93
|
+
background: $color-primary;
|
94
|
+
color: $color-white;
|
95
95
|
}
|
96
96
|
::selection {
|
97
|
-
background: $primary
|
98
|
-
color:
|
97
|
+
background: $color-primary;
|
98
|
+
color: $color-white;
|
99
99
|
}
|
@@ -7,8 +7,8 @@
|
|
7
7
|
/* # Sidebar
|
8
8
|
================================================== */
|
9
9
|
.sidebar {
|
10
|
-
background:
|
11
|
-
border-left: 2px solid
|
10
|
+
background: $color-white;
|
11
|
+
border-left: 2px solid $color-haze-light;
|
12
12
|
box-sizing: border-box;
|
13
13
|
height: 100%;
|
14
14
|
min-width: 280px;
|
@@ -16,11 +16,11 @@
|
|
16
16
|
width: 280px;
|
17
17
|
}
|
18
18
|
.sidebar-alt {
|
19
|
-
border-right: 2px solid
|
19
|
+
border-right: 2px solid $color-haze-light;
|
20
20
|
border-left: 0;
|
21
21
|
}
|
22
22
|
.sidebar-header {
|
23
|
-
border-bottom: 1px solid
|
23
|
+
border-bottom: 1px solid $color-haze-light;
|
24
24
|
font-size: 12px;
|
25
25
|
line-height: 12px;
|
26
26
|
padding: 12px 20px 10px 10px;
|
@@ -49,7 +49,7 @@
|
|
49
49
|
padding-left: 20px;
|
50
50
|
}
|
51
51
|
.sidebar-scrollable {
|
52
|
-
border-bottom: 1px solid
|
52
|
+
border-bottom: 1px solid $color-haze-light;
|
53
53
|
height: auto;
|
54
54
|
max-height: calc(50% - 60px);
|
55
55
|
-webkit-overflow-scrolling: touch;
|
@@ -61,8 +61,8 @@
|
|
61
61
|
================================================== */
|
62
62
|
.sidebar-dark,
|
63
63
|
.sidebar-primary { border-color: rgba(0,0,0,0.2); }
|
64
|
-
.sidebar-dark { background:
|
65
|
-
.sidebar-primary { background: $primary
|
64
|
+
.sidebar-dark { background: $color-black; }
|
65
|
+
.sidebar-primary { background: $color-primary; }
|
66
66
|
.sidebar-dark.sidebar-alt,
|
67
67
|
.sidebar-dark > .sidebar-header,
|
68
68
|
.sidebar-dark > .sidebar-scrollable,
|
@@ -70,14 +70,14 @@
|
|
70
70
|
.sidebar-primary > .sidebar-header,
|
71
71
|
.sidebar-primary > .sidebar-scrollable { border-color: rgba(0,0,0,0.2); }
|
72
72
|
.sidebar-dark > .sidebar-header > h6,
|
73
|
-
.sidebar-primary > .sidebar-header > h6 { color:
|
73
|
+
.sidebar-primary > .sidebar-header > h6 { color: $color-white; }
|
74
74
|
.sidebar-light {
|
75
|
-
background:
|
76
|
-
border-color:
|
75
|
+
background: $color-haze-light;
|
76
|
+
border-color: $color-haze-dark;
|
77
77
|
}
|
78
78
|
.sidebar-light.sidebar-alt,
|
79
79
|
.sidebar-light > .sidebar-header,
|
80
|
-
.sidebar-light > .sidebar-scrollable { border-color:
|
80
|
+
.sidebar-light > .sidebar-scrollable { border-color: $color-haze-dark; }
|
81
81
|
|
82
82
|
/* # Media Queries
|
83
83
|
================================================== */
|
@@ -138,24 +138,24 @@
|
|
138
138
|
0% {
|
139
139
|
-webkit-transform: rotate(0deg);
|
140
140
|
transform: rotate(0deg);
|
141
|
-
box-shadow: $primary
|
141
|
+
box-shadow: $color-primary 0 0 23px 0, $color-primary -20px -20px 0 0, $color-primary 20px -20px 0 0, $color-primary 20px 20px 0 0, $color-primary -20px 20px 0 0;
|
142
142
|
}
|
143
143
|
50% {
|
144
144
|
-webkit-transform: rotate(1080deg);
|
145
145
|
transform: rotate(1080deg);
|
146
|
-
box-shadow: $primary
|
146
|
+
box-shadow: $color-primary 0 0 23px 0, $color-primary 20px 20px 0 0, $color-primary -20px 20px 0 0, $color-primary -20px -20px 0 0, $color-primary 20px -20px 0 0;
|
147
147
|
}
|
148
148
|
}
|
149
149
|
@keyframes spinnerFlower {
|
150
150
|
0% {
|
151
151
|
-webkit-transform: rotate(0deg);
|
152
152
|
transform: rotate(0deg);
|
153
|
-
box-shadow: $primary
|
153
|
+
box-shadow: $color-primary 0 0 23px 0, $color-primary -20px -20px 0 0, $color-primary 20px -20px 0 0, $color-primary 20px 20px 0 0, $color-primary -20px 20px 0 0;
|
154
154
|
}
|
155
155
|
50% {
|
156
156
|
-webkit-transform: rotate(1080deg);
|
157
157
|
transform: rotate(1080deg);
|
158
|
-
box-shadow: $primary
|
158
|
+
box-shadow: $color-primary 0 0 23px 0, $color-primary 20px 20px 0 0, $color-primary -20px 20px 0 0, $color-primary -20px -20px 0 0, $color-primary 20px -20px 0 0;
|
159
159
|
}
|
160
160
|
}
|
161
161
|
@-webkit-keyframes spinnerOrbit {
|
@@ -381,14 +381,14 @@
|
|
381
381
|
.spinner-wave div,
|
382
382
|
.spinner-wobbler,
|
383
383
|
.spinner-wobbler::after {
|
384
|
-
border: 1px solid $primary
|
384
|
+
border: 1px solid $color-primary;
|
385
385
|
border-radius: 500px;
|
386
386
|
box-sizing: border-box;
|
387
387
|
}
|
388
388
|
.spinner-beat {
|
389
389
|
-webkit-animation: spinnerBeat 1.3s infinite ease-in-out;
|
390
390
|
animation: spinnerBeat 1.3s infinite ease-in-out;
|
391
|
-
background:
|
391
|
+
background: $color-white;
|
392
392
|
border-width: 2px;
|
393
393
|
}
|
394
394
|
.spinner-circle-container-1 div,
|
@@ -396,7 +396,7 @@
|
|
396
396
|
.spinner-circle-container-3 div {
|
397
397
|
-webkit-animation: spinnerCircle 1.2s infinite ease-in-out;
|
398
398
|
animation: spinnerCircle 1.2s infinite ease-in-out;
|
399
|
-
background: $primary
|
399
|
+
background: $color-primary;
|
400
400
|
height: 15px;
|
401
401
|
position: absolute;
|
402
402
|
width: 15px;
|
@@ -438,7 +438,7 @@
|
|
438
438
|
.spinner-chase-2 {
|
439
439
|
-webkit-animation: spinnerChaseBounce 2.0s infinite ease-in-out;
|
440
440
|
animation: spinnerChaseBounce 2.0s infinite ease-in-out;
|
441
|
-
background: $primary
|
441
|
+
background: $color-primary;
|
442
442
|
display: inline-block;
|
443
443
|
height: 60%;
|
444
444
|
position: absolute;
|
@@ -466,8 +466,8 @@
|
|
466
466
|
.spinner-cube-9 {
|
467
467
|
-webkit-animation: spinnerCube 1.3s infinite ease-in-out;
|
468
468
|
animation: spinnerCube 1.3s infinite ease-in-out;
|
469
|
-
background: $primary
|
470
|
-
border-color:
|
469
|
+
background: $color-primary;
|
470
|
+
border-color: $color-white;
|
471
471
|
float: left;
|
472
472
|
height: 33%;
|
473
473
|
width: 33%;
|
@@ -479,7 +479,7 @@
|
|
479
479
|
.spinner-double-bounce-2 {
|
480
480
|
-webkit-animation: spinnerDoubleBounce 2.0s infinite ease-in-out;
|
481
481
|
animation: spinnerDoubleBounce 2.0s infinite ease-in-out;
|
482
|
-
background: $primary
|
482
|
+
background: $color-primary;
|
483
483
|
border-radius: 50%;
|
484
484
|
height: 100%;
|
485
485
|
left: 0;
|
@@ -491,7 +491,7 @@
|
|
491
491
|
.spinner-flower {
|
492
492
|
-webkit-animation: spinnerFlower 5s infinite ease-in-out;
|
493
493
|
animation: spinnerFlower 5s infinite ease-in-out;
|
494
|
-
background: $primary
|
494
|
+
background: $color-primary;
|
495
495
|
height: 23px;
|
496
496
|
-webkit-transform-origin: 50% 50%;
|
497
497
|
transform-origin: 50% 50%;
|
@@ -502,19 +502,19 @@
|
|
502
502
|
animation: spinnerOrbit 1s linear infinite;
|
503
503
|
}
|
504
504
|
.spinner-orbit-1 {
|
505
|
-
background: $primary
|
505
|
+
background: $color-primary;
|
506
506
|
height: 20px;
|
507
507
|
width: 20px;
|
508
508
|
}
|
509
509
|
.spinner-pulse {
|
510
510
|
-webkit-animation: spinnerPulse 1.0s infinite ease-in-out;
|
511
511
|
animation: spinnerPulse 1.0s infinite ease-in-out;
|
512
|
-
background: $primary
|
512
|
+
background: $color-primary;
|
513
513
|
}
|
514
514
|
.spinner-rotating-plane {
|
515
515
|
-webkit-animation: spinnerRotatingPlane 1.2s infinite ease-in-out;
|
516
516
|
animation: spinnerRotatingPlane 1.2s infinite ease-in-out;
|
517
|
-
background: $primary
|
517
|
+
background: $color-primary;
|
518
518
|
border-radius: 0;
|
519
519
|
height: 100px;
|
520
520
|
width: 100px;
|
@@ -523,7 +523,7 @@
|
|
523
523
|
.spinner-triple-bounce div {
|
524
524
|
-webkit-animation: spinnerTripleBounce 1.4s infinite ease-in-out;
|
525
525
|
animation: spinnerTripleBounce 1.4s infinite ease-in-out;
|
526
|
-
background: $primary
|
526
|
+
background: $color-primary;
|
527
527
|
display: inline-block;
|
528
528
|
height: 25px;
|
529
529
|
width: 25px;
|
@@ -536,7 +536,7 @@
|
|
536
536
|
.spinner-wander-2 {
|
537
537
|
-webkit-animation: spinnerWander 1.8s infinite ease-in-out;
|
538
538
|
animation: spinnerWander 1.8s infinite ease-in-out;
|
539
|
-
background: $primary
|
539
|
+
background: $color-primary;
|
540
540
|
border-radius: 0;
|
541
541
|
height: 20px;
|
542
542
|
left: 0;
|
@@ -548,7 +548,7 @@
|
|
548
548
|
.spinner-wave div {
|
549
549
|
-webkit-animation: spinnerWave 1.2s infinite ease-in-out;
|
550
550
|
animation: spinnerWave 1.2s infinite ease-in-out;
|
551
|
-
background: $primary
|
551
|
+
background: $color-primary;
|
552
552
|
border-radius: 0;
|
553
553
|
display: inline-block;
|
554
554
|
height: 100%;
|
@@ -561,7 +561,7 @@
|
|
561
561
|
.spinner-wobbler::after {
|
562
562
|
-webkit-animation: spinnerWobbler 15s infinite ease-in-out;
|
563
563
|
animation: spinnerWobbler 15s infinite ease-in-out;
|
564
|
-
background: $primary
|
564
|
+
background: $color-primary;
|
565
565
|
content: '';
|
566
566
|
height: 20px;
|
567
567
|
left: 5px;
|
@@ -14,10 +14,10 @@
|
|
14
14
|
z-index: -1;
|
15
15
|
}
|
16
16
|
.swoggle {
|
17
|
-
background:
|
17
|
+
background: $color-haze-light;
|
18
18
|
border-radius: 500px;
|
19
|
-
border: 1px solid
|
20
|
-
color:
|
19
|
+
border: 1px solid $color-haze-light;
|
20
|
+
color: $color-black;
|
21
21
|
cursor: pointer;
|
22
22
|
display: inline-block;
|
23
23
|
-webkit-font-smoothing: antialiased;
|
@@ -49,7 +49,7 @@
|
|
49
49
|
vertical-align: middle;
|
50
50
|
}
|
51
51
|
.swoggle label {
|
52
|
-
background:
|
52
|
+
background: $color-white;
|
53
53
|
border-radius: 500px;
|
54
54
|
margin-bottom: 0;
|
55
55
|
margin-top: 0;
|
@@ -81,38 +81,38 @@
|
|
81
81
|
.swoggle.swoggle-on.swoggle-purple,
|
82
82
|
.swoggle.swoggle-on.swoggle-red,
|
83
83
|
.swoggle.swoggle-on.swoggle-smoke,
|
84
|
-
.swoggle.swoggle-on.swoggle-yellow { color:
|
84
|
+
.swoggle.swoggle-on.swoggle-yellow { color: $color-white; }
|
85
85
|
.swoggle.swoggle-on.swoggle-black {
|
86
|
-
background:
|
87
|
-
border-color:
|
86
|
+
background: $color-black;
|
87
|
+
border-color: $color-black;
|
88
88
|
}
|
89
89
|
.swoggle.swoggle-on.swoggle-blue {
|
90
|
-
background:
|
91
|
-
border-color:
|
90
|
+
background: $color-blue;
|
91
|
+
border-color: $color-blue;
|
92
92
|
}
|
93
93
|
.swoggle.swoggle-on.swoggle-green {
|
94
|
-
background:
|
95
|
-
border-color:
|
94
|
+
background: $color-green;
|
95
|
+
border-color: $color-green;
|
96
96
|
}
|
97
97
|
.swoggle.swoggle-on.swoggle-orange {
|
98
|
-
background:
|
99
|
-
border-color:
|
98
|
+
background: $color-orange;
|
99
|
+
border-color: $color-orange;
|
100
100
|
}
|
101
101
|
.swoggle.swoggle-on.swoggle-purple {
|
102
|
-
background:
|
103
|
-
border-color:
|
102
|
+
background: $color-purple;
|
103
|
+
border-color: $color-purple;
|
104
104
|
}
|
105
105
|
.swoggle.swoggle-on.swoggle-red {
|
106
|
-
background:
|
107
|
-
border-color:
|
106
|
+
background: $color-red;
|
107
|
+
border-color: $color-red;
|
108
108
|
}
|
109
109
|
.swoggle.swoggle-on.swoggle-smoke {
|
110
|
-
background:
|
111
|
-
border-color:
|
110
|
+
background: $color-gray-dark;
|
111
|
+
border-color: $color-gray-dark;
|
112
112
|
}
|
113
113
|
.swoggle.swoggle-on.swoggle-yellow {
|
114
|
-
background:
|
115
|
-
border-color:
|
114
|
+
background: $color-yellow;
|
115
|
+
border-color: $color-yellow;
|
116
116
|
}
|
117
117
|
.swoggle.swoggle-animate div {
|
118
118
|
-webkit-transition: margin-left 0.5s;
|
@@ -15,8 +15,8 @@ table {
|
|
15
15
|
.table caption,
|
16
16
|
.table th,
|
17
17
|
.table td {
|
18
|
-
background:
|
19
|
-
border-top: 1px solid
|
18
|
+
background: $color-white;
|
19
|
+
border-top: 1px solid $color-haze-dark;
|
20
20
|
font-size: 16px;
|
21
21
|
line-height: 25px;
|
22
22
|
padding: 9px 10px 6px 10px;
|
@@ -30,7 +30,7 @@ table {
|
|
30
30
|
font-weight: bold;
|
31
31
|
padding: 7px 10px 7px 10px;
|
32
32
|
}
|
33
|
-
.table th a { color:
|
33
|
+
.table th a { color: $color-black; }
|
34
34
|
.table th.tablespy-sort-asc:before {
|
35
35
|
content: "\f3d8";
|
36
36
|
float: right;
|
@@ -58,9 +58,9 @@ table {
|
|
58
58
|
.table th.tablespy-sort-empty:before { content: ""; }
|
59
59
|
.table th.tablespy-sort-empty { pointer-events: none; }
|
60
60
|
.table caption {
|
61
|
-
border-bottom: 1px solid
|
61
|
+
border-bottom: 1px solid $color-haze-dark;
|
62
62
|
border-top: 0;
|
63
|
-
color:
|
63
|
+
color: $color-black;
|
64
64
|
font-size: 15px;
|
65
65
|
font-weight: bold;
|
66
66
|
letter-spacing: 1px;
|
@@ -73,7 +73,7 @@ table {
|
|
73
73
|
.table colgroup + thead tr:first-child td,
|
74
74
|
.table thead:first-child tr:first-child th,
|
75
75
|
.table thead:first-child tr:first-child td { border-top: 0; }
|
76
|
-
.table tbody + tbody { border-top: 1px solid
|
76
|
+
.table tbody + tbody { border-top: 1px solid $color-haze-dark; }
|
77
77
|
.table-align-bottom th,
|
78
78
|
.table-align-bottom td { vertical-align: bottom; }
|
79
79
|
.table-align-top th,
|
@@ -89,16 +89,16 @@ table {
|
|
89
89
|
padding: 5px 5px 3px 5px;
|
90
90
|
}
|
91
91
|
.table-bordered {
|
92
|
-
border: 1px solid
|
92
|
+
border: 1px solid $color-haze-dark;
|
93
93
|
border-collapse: separate;
|
94
94
|
border-left: 0;
|
95
95
|
}
|
96
96
|
.table-bordered caption {
|
97
|
-
border: 1px solid
|
97
|
+
border: 1px solid $color-haze-dark;
|
98
98
|
border-bottom-width: 0;
|
99
99
|
}
|
100
100
|
.table-bordered th,
|
101
|
-
.table-bordered td { border-left: 1px solid
|
101
|
+
.table-bordered td { border-left: 1px solid $color-haze-dark; }
|
102
102
|
.table-bordered caption + thead tr:first-child th,
|
103
103
|
.table-bordered caption + tbody tr:first-child th,
|
104
104
|
.table-bordered caption + tbody tr:first-child td,
|
@@ -109,9 +109,9 @@ table {
|
|
109
109
|
.table-bordered tbody:first-child tr:first-child th,
|
110
110
|
.table-bordered tbody:first-child tr:first-child td { border-top: 0; }
|
111
111
|
.table-striped tbody > tr:nth-child(odd) > td,
|
112
|
-
.table-striped tbody > tr:nth-child(odd) > th { background:
|
112
|
+
.table-striped tbody > tr:nth-child(odd) > th { background: $color-haze-light; }
|
113
113
|
.table-hover tbody tr:hover > td,
|
114
|
-
.table-hover tbody tr:hover > th { background:
|
114
|
+
.table-hover tbody tr:hover > th { background: $color-haze; }
|
115
115
|
.table-unbordered,
|
116
116
|
.table-unbordered thead,
|
117
117
|
.table-unbordered tbody,
|
@@ -126,7 +126,7 @@ table {
|
|
126
126
|
================================================== */
|
127
127
|
@media only screen and (max-width: 960px) {
|
128
128
|
.table-responsive {
|
129
|
-
border: 1px solid
|
129
|
+
border: 1px solid $color-haze-dark;
|
130
130
|
max-height: 300px;
|
131
131
|
-webkit-overflow-scrolling: touch;
|
132
132
|
overflow: scroll;
|
@@ -17,7 +17,7 @@
|
|
17
17
|
z-index: 1060;
|
18
18
|
}
|
19
19
|
.timepicker-widget.dropdown-menu:before {
|
20
|
-
border-bottom: 7px solid
|
20
|
+
border-bottom: 7px solid $color-haze-dark;
|
21
21
|
border-right: 7px solid transparent;
|
22
22
|
border-left: 7px solid transparent;
|
23
23
|
content: "";
|
@@ -25,7 +25,7 @@
|
|
25
25
|
position: absolute;
|
26
26
|
}
|
27
27
|
.timepicker-widget.dropdown-menu:after {
|
28
|
-
border-bottom: 6px solid
|
28
|
+
border-bottom: 6px solid $color-haze-dark;
|
29
29
|
border-right: 6px solid transparent;
|
30
30
|
border-left: 6px solid transparent;
|
31
31
|
content: "";
|
@@ -40,12 +40,12 @@
|
|
40
40
|
.timepicker-widget.timepicker-orient-top:after { top: -6px; }
|
41
41
|
.timepicker-widget.timepicker-orient-bottom:before {
|
42
42
|
border-bottom: 0;
|
43
|
-
border-top: 7px solid
|
43
|
+
border-top: 7px solid $color-haze-dark;
|
44
44
|
bottom: -7px;
|
45
45
|
}
|
46
46
|
.timepicker-widget.timepicker-orient-bottom:after {
|
47
47
|
border-bottom: 0;
|
48
|
-
border-top: 6px solid
|
48
|
+
border-top: 6px solid $color-haze-dark;
|
49
49
|
bottom: -6px;
|
50
50
|
}
|
51
51
|
.timepicker-widget > table {
|
@@ -61,7 +61,7 @@
|
|
61
61
|
.timepicker-widget > table td:not(.separator) { min-width: 30px; }
|
62
62
|
.timepicker-widget > table td span { width: 100%; }
|
63
63
|
.timepicker-widget > table td > a {
|
64
|
-
color:
|
64
|
+
color: $color-black;
|
65
65
|
display: inline-block;
|
66
66
|
margin: 0;
|
67
67
|
padding: 8px 0;
|
@@ -71,6 +71,6 @@
|
|
71
71
|
.timepicker-widget > table td > a:hover,
|
72
72
|
.timepicker-widget > table td > a:active,
|
73
73
|
.timepicker-widget > table td > a:focus {
|
74
|
-
color: $primary
|
74
|
+
color: $color-primary;
|
75
75
|
text-decoration: none;
|
76
76
|
}
|