viniBaxter-desk_front 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.DS_Store +0 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +35 -0
- data/README.md +39 -0
- data/Rakefile +6 -0
- data/app/assets/images/desk_front/.DS_Store +0 -0
- data/app/assets/images/desk_front/avatar-group-hover-last.svg +9 -0
- data/app/assets/images/desk_front/avatar-group-hover.svg +10 -0
- data/app/assets/images/desk_front/avatar-group.svg +9 -0
- data/app/assets/images/desk_front/avatar-status.svg +9 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/image_setUP.md +5 -0
- data/lib/viniBaxter/.DS_Store +0 -0
- data/lib/viniBaxter/desk_front/.DS_Store +0 -0
- data/lib/viniBaxter/desk_front/engine.rb +17 -0
- data/lib/viniBaxter/desk_front/version.rb +5 -0
- data/lib/viniBaxter/desk_front.rb +8 -0
- data/lib/viniBaxter/sass/.DS_Store +0 -0
- data/lib/viniBaxter/sass/desk_front/.DS_Store +0 -0
- data/lib/viniBaxter/sass/desk_front/_user-variables.scss +8 -0
- data/lib/viniBaxter/sass/desk_front/_user.scss +4 -0
- data/lib/viniBaxter/sass/desk_front/administrate/base/_forms.scss +107 -0
- data/lib/viniBaxter/sass/desk_front/administrate/base/_layout.scss +20 -0
- data/lib/viniBaxter/sass/desk_front/administrate/base/_lists.scss +19 -0
- data/lib/viniBaxter/sass/desk_front/administrate/base/_tables.scss +55 -0
- data/lib/viniBaxter/sass/desk_front/administrate/base/_typography.scss +45 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_app-container.scss +9 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_attributes.scss +26 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_buttons.scss +51 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_cells.scss +47 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_field-unit.scss +45 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_flashes.scss +28 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_form-actions.scss +3 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_main-content.scss +29 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_navigation.scss +32 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_pagination.scss +18 -0
- data/lib/viniBaxter/sass/desk_front/administrate/components/_search.scss +46 -0
- data/lib/viniBaxter/sass/desk_front/administrate/desk_front/.DS_Store +0 -0
- data/lib/viniBaxter/sass/desk_front/administrate/index.scss +34 -0
- data/lib/viniBaxter/sass/desk_front/administrate/library/_clearfix.scss +7 -0
- data/lib/viniBaxter/sass/desk_front/administrate/library/_data-label.scss +8 -0
- data/lib/viniBaxter/sass/desk_front/administrate/library/_variables.scss +0 -0
- data/lib/viniBaxter/sass/desk_front/administrate/reset/_normalize.scss +447 -0
- data/lib/viniBaxter/sass/desk_front/administrate/utilities/_text-color.scss +3 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_alert.scss +51 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_badge.scss +54 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_breadcrumb.scss +42 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_button-group.scss +163 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_buttons.scss +139 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_card.scss +278 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_carousel.scss +197 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_close.scss +41 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_code.scss +48 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_custom-forms.scss +521 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_dropdown.scss +191 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_forms.scss +338 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_functions.scss +134 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_grid.scss +69 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_images.scss +42 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_input-group.scss +191 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_jumbotron.scss +17 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_list-group.scss +158 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_media.scss +8 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_mixins.scss +47 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_modal.scss +239 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_nav.scss +120 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_navbar.scss +324 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_pagination.scss +73 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_popover.scss +170 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_print.scss +141 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_progress.scss +46 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_reboot.scss +482 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_root.scss +20 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_spinners.scss +55 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_tables.scss +185 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_toasts.scss +44 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_tooltip.scss +115 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_transitions.scss +20 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_type.scss +125 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_utilities.scss +17 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/_variables.scss +1143 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/bootstrap-grid.scss +29 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/bootstrap-reboot.scss +12 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/bootstrap.scss +44 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_alert.scss +13 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_background-variant.scss +22 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_badge.scss +17 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_border-radius.scss +63 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_box-shadow.scss +20 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_breakpoints.scss +123 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_buttons.scss +110 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_caret.scss +62 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_clearfix.scss +7 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_deprecate.scss +10 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_float.scss +14 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_forms.scss +177 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_gradients.scss +45 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_grid-framework.scss +71 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_grid.scss +69 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_hover.scss +37 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_image.scss +36 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_list-group.scss +21 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_lists.scss +7 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_nav-divider.scss +11 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_pagination.scss +22 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_reset-text.scss +17 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_resize.scss +6 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_screen-reader.scss +34 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_size.scss +7 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_table-row.scss +39 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_text-emphasis.scss +17 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_text-hide.scss +11 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_text-truncate.scss +8 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_transition.scss +16 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/mixins/_visibility.scss +8 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_align.scss +8 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_background.scss +19 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_borders.scss +75 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_clearfix.scss +3 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_display.scss +26 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_embed.scss +39 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_flex.scss +51 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_float.scss +11 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_overflow.scss +5 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_position.scss +32 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_screenreaders.scss +11 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_shadows.scss +6 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_sizing.scss +20 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_spacing.scss +73 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_stretched-link.scss +19 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_text.scss +72 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/utilities/_visibility.scss +13 -0
- data/lib/viniBaxter/sass/desk_front/bootstrap_4/vendor/_rfs.scss +204 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_alert.scss +28 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_avatar.scss +197 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_badge.scss +28 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_breadcrumb.scss +55 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_buttons.scss +68 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_card.scss +298 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_chart.scss +79 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_checklist.scss +36 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_close.scss +10 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_code.scss +16 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_comment.scss +34 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_custom-forms.scss +37 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_dashkit.scss +38 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_dropdowns.scss +124 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_forms.scss +272 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_header.scss +58 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_icon.scss +54 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_jumbotron.scss +15 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_kanban.scss +68 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_list-group.scss +53 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_main-content.scss +70 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_mixins.scss +16 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_modal.scss +101 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_nav.scss +112 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_navbar.scss +722 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_popover.scss +101 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_progress.scss +27 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_reboot.scss +12 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_root.scss +12 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_tables.scss +76 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_toasts.scss +4 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_type.scss +115 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_utilities.scss +5 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_variables.scss +0 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/_vendors.scss +5 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/dark/_overrides-dark.scss +60 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/dark/_variables-dark.scss +219 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/mixins/_badge.scss +16 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/mixins/_breakpoints.scss +9 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss +80 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/utilities/_borders.scss +48 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/utilities/_lift.scss +20 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/utilities/_sizing.scss +10 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/utilities/_type.scss +34 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/vendors/_dropzone.scss +75 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/vendors/_flatpickr.scss +69 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/vendors/_list.scss +11 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/vendors/_quill.scss +283 -0
- data/lib/viniBaxter/sass/desk_front/dashkit/vendors/_select2.scss +128 -0
- data/lib/viniBaxter/sass/desk_front/theme-dark.scss +30 -0
- data/lib/viniBaxter/sass/desk_front/theme.scss +24 -0
- data/lib/viniBaxter/sass/desk_front.scss +23 -0
- data/viniBaxter-desk_front.gemspec +33 -0
- metadata +275 -0
@@ -0,0 +1,101 @@
|
|
1
|
+
//
|
2
|
+
// popover.scss
|
3
|
+
// Extended from Bootstrap
|
4
|
+
//
|
5
|
+
|
6
|
+
//
|
7
|
+
// Bootstrap Overrides =====================================
|
8
|
+
//
|
9
|
+
|
10
|
+
.popover {
|
11
|
+
padding: $popover-padding-y $popover-padding-x;
|
12
|
+
|
13
|
+
&:hover {
|
14
|
+
visibility: visible !important;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
|
18
|
+
.popover-header {
|
19
|
+
margin-bottom: $popover-header-margin-bottom;
|
20
|
+
border-bottom: 0;
|
21
|
+
}
|
22
|
+
|
23
|
+
.popover-body-label {
|
24
|
+
margin-left: .25rem;
|
25
|
+
}
|
26
|
+
|
27
|
+
.popover-body-value {
|
28
|
+
margin-left: .25rem;
|
29
|
+
}
|
30
|
+
|
31
|
+
.popover-body-indicator {
|
32
|
+
display: inline-block;
|
33
|
+
width: .5rem;
|
34
|
+
height: .5rem;
|
35
|
+
border-radius: 50%;
|
36
|
+
}
|
37
|
+
|
38
|
+
|
39
|
+
// Large
|
40
|
+
|
41
|
+
.popover-lg {
|
42
|
+
max-width: $popover-lg-max-width;
|
43
|
+
}
|
44
|
+
|
45
|
+
|
46
|
+
// Dark
|
47
|
+
|
48
|
+
.popover-dark {
|
49
|
+
background-color: $popover-dark-bg;
|
50
|
+
border-color: $popover-dark-border-color;
|
51
|
+
}
|
52
|
+
|
53
|
+
.popover-dark .popover-header {
|
54
|
+
font-weight: $font-weight-normal;
|
55
|
+
background-color: $popover-dark-header-bg;
|
56
|
+
color: $popover-dark-header-color;
|
57
|
+
}
|
58
|
+
|
59
|
+
.popover-dark.bs-popover-top .arrow {
|
60
|
+
|
61
|
+
&::before {
|
62
|
+
border-top-color: $popover-dark-border-color;
|
63
|
+
}
|
64
|
+
|
65
|
+
&::after {
|
66
|
+
border-top-color: $popover-dark-bg;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
.popover-dark.bs-popover-right .arrow {
|
71
|
+
|
72
|
+
&::before {
|
73
|
+
border-right-color: $popover-dark-border-color;
|
74
|
+
}
|
75
|
+
|
76
|
+
&::after {
|
77
|
+
border-right-color: $popover-dark-bg;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
.popover-dark.bs-popover-bottom .arrow {
|
82
|
+
|
83
|
+
&::before {
|
84
|
+
border-bottom-color: $popover-dark-border-color;
|
85
|
+
}
|
86
|
+
|
87
|
+
&::after {
|
88
|
+
border-bottom-color: $popover-dark-bg;
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
.popover-dark.bs-popover-left .arrow {
|
93
|
+
|
94
|
+
&::before {
|
95
|
+
border-left-color: $popover-dark-border-color;
|
96
|
+
}
|
97
|
+
|
98
|
+
&::after {
|
99
|
+
border-left-color: $popover-dark-bg;
|
100
|
+
}
|
101
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
//
|
2
|
+
// progress.scss
|
3
|
+
// Extended from Bootstrap
|
4
|
+
//
|
5
|
+
|
6
|
+
//
|
7
|
+
// Bootstrap Overrides =====================================
|
8
|
+
//
|
9
|
+
|
10
|
+
// Rounds the progress bar, even for "multiple bar" progress bars
|
11
|
+
.progress-bar:first-child {
|
12
|
+
border-top-left-radius: $progress-border-radius;
|
13
|
+
border-bottom-left-radius: $progress-border-radius;
|
14
|
+
}
|
15
|
+
.progress-bar:last-child {
|
16
|
+
border-top-right-radius: $progress-border-radius;
|
17
|
+
border-bottom-right-radius: $progress-border-radius;
|
18
|
+
}
|
19
|
+
|
20
|
+
|
21
|
+
//
|
22
|
+
// Dashkit ===================================
|
23
|
+
//
|
24
|
+
|
25
|
+
.progress-sm {
|
26
|
+
height: $progress-height-sm;
|
27
|
+
}
|
@@ -0,0 +1,76 @@
|
|
1
|
+
//
|
2
|
+
// tables.scss
|
3
|
+
// Extended from Bootstrap
|
4
|
+
//
|
5
|
+
|
6
|
+
//
|
7
|
+
// Bootstrap Overrides =====================================
|
8
|
+
//
|
9
|
+
|
10
|
+
.table {
|
11
|
+
|
12
|
+
thead th {
|
13
|
+
background-color: $table-head-bg;
|
14
|
+
text-transform: uppercase;
|
15
|
+
font-size: $font-size-sm;
|
16
|
+
font-weight: $font-weight-bold;
|
17
|
+
letter-spacing: .08em;
|
18
|
+
color: $table-head-color;
|
19
|
+
border-bottom-width: $table-border-width;
|
20
|
+
}
|
21
|
+
|
22
|
+
thead th, tbody th, tbody td {
|
23
|
+
vertical-align: middle;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
.table-sm {
|
28
|
+
font-size: $font-size-sm;
|
29
|
+
|
30
|
+
thead th {
|
31
|
+
font-size: $font-size-xs;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
|
36
|
+
//
|
37
|
+
// Dashkit =====================================
|
38
|
+
//
|
39
|
+
|
40
|
+
// No wrap
|
41
|
+
//
|
42
|
+
// Prevents table content from wrapping to the next line
|
43
|
+
|
44
|
+
.table-nowrap {
|
45
|
+
|
46
|
+
th, td {
|
47
|
+
white-space: nowrap;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
|
52
|
+
// Sort
|
53
|
+
//
|
54
|
+
// Adds sorting icons
|
55
|
+
|
56
|
+
.table [data-sort] {
|
57
|
+
white-space: nowrap;
|
58
|
+
|
59
|
+
&::after {
|
60
|
+
content: str-replace(url("data:image/svg+xml;utf8,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M3 0L6 4H0L3 0ZM3 10L0 6H6L3 10Z' fill='#{$text-muted}'/></svg>"), "#", "%23");
|
61
|
+
margin-left: .25rem;
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
|
66
|
+
// Table checkbox
|
67
|
+
|
68
|
+
.table-checkbox {
|
69
|
+
min-height: 0;
|
70
|
+
}
|
71
|
+
|
72
|
+
.table-checkbox .custom-control-label::before,
|
73
|
+
.table-checkbox .custom-control-label::after {
|
74
|
+
top: 50%;
|
75
|
+
transform: translateY(-50%);
|
76
|
+
}
|
@@ -0,0 +1,115 @@
|
|
1
|
+
//
|
2
|
+
// type.scss
|
3
|
+
// Extended from Bootstrap
|
4
|
+
//
|
5
|
+
|
6
|
+
//
|
7
|
+
// Bootstrap Overrides =====================================
|
8
|
+
//
|
9
|
+
|
10
|
+
h1, .h1 {
|
11
|
+
margin-bottom: $headings-margin-bottom;
|
12
|
+
font-size: 1.5rem;
|
13
|
+
|
14
|
+
@include media-breakpoint-up(md) {
|
15
|
+
font-size: $h1-font-size;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
h2, .h2 {
|
20
|
+
margin-bottom: $headings-margin-bottom;
|
21
|
+
}
|
22
|
+
|
23
|
+
h3, .h3 {
|
24
|
+
margin-bottom: ($headings-margin-bottom * .75);
|
25
|
+
}
|
26
|
+
|
27
|
+
h4, .h4 {
|
28
|
+
margin-bottom: ($headings-margin-bottom * .5);
|
29
|
+
}
|
30
|
+
|
31
|
+
h5, .h5 {
|
32
|
+
margin-bottom: ($headings-margin-bottom * .5);
|
33
|
+
}
|
34
|
+
|
35
|
+
h6, .h6 {
|
36
|
+
margin-bottom: ($headings-margin-bottom * .5);
|
37
|
+
}
|
38
|
+
|
39
|
+
|
40
|
+
// Links
|
41
|
+
|
42
|
+
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
|
43
|
+
|
44
|
+
> a {
|
45
|
+
color: inherit;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
// Type display classes
|
50
|
+
|
51
|
+
.display-1,
|
52
|
+
.display-2,
|
53
|
+
.display-3,
|
54
|
+
.display-4 {
|
55
|
+
letter-spacing: $display-letter-spacing;
|
56
|
+
}
|
57
|
+
|
58
|
+
// Headings
|
59
|
+
|
60
|
+
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
|
61
|
+
letter-spacing: $headings-letter-spacing;
|
62
|
+
}
|
63
|
+
|
64
|
+
h6.text-uppercase {
|
65
|
+
letter-spacing: .08em;
|
66
|
+
}
|
67
|
+
|
68
|
+
// Bold, strong
|
69
|
+
|
70
|
+
b, strong {
|
71
|
+
font-weight: $font-weight-bold;
|
72
|
+
}
|
73
|
+
|
74
|
+
|
75
|
+
// Links, buttons
|
76
|
+
//
|
77
|
+
// Removes focus outline
|
78
|
+
|
79
|
+
a, button {
|
80
|
+
|
81
|
+
&:focus {
|
82
|
+
outline: none !important;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
86
|
+
|
87
|
+
//
|
88
|
+
// Dashkit =====================================
|
89
|
+
//
|
90
|
+
|
91
|
+
// Include Cerebri Sans
|
92
|
+
|
93
|
+
@font-face {
|
94
|
+
font-family: 'Cerebri Sans';
|
95
|
+
src: url('#{$path-to-fonts}/cerebrisans/cerebrisans-regular.eot');
|
96
|
+
src: url('#{$path-to-fonts}/cerebrisans/cerebrisans-regular.eot?#iefix') format('embedded-opentype'), url('#{$path-to-fonts}/cerebrisans/cerebrisans-regular.woff') format('woff'), url('#{$path-to-fonts}/cerebrisans/cerebrisans-regular.ttf') format('truetype');
|
97
|
+
font-weight: 400;
|
98
|
+
font-style: normal;
|
99
|
+
}
|
100
|
+
|
101
|
+
@font-face {
|
102
|
+
font-family: 'Cerebri Sans';
|
103
|
+
src: url('#{$path-to-fonts}/cerebrisans/cerebrisans-medium.eot');
|
104
|
+
src: url('#{$path-to-fonts}/cerebrisans/cerebrisans-medium.eot?#iefix') format('embedded-opentype'), url('#{$path-to-fonts}/cerebrisans/cerebrisans-medium.woff') format('woff'), url('#{$path-to-fonts}/cerebrisans/cerebrisans-medium.ttf') format('truetype');
|
105
|
+
font-weight: 500;
|
106
|
+
font-style: normal;
|
107
|
+
}
|
108
|
+
|
109
|
+
@font-face {
|
110
|
+
font-family: 'Cerebri Sans';
|
111
|
+
src: url('#{$path-to-fonts}/cerebrisans/cerebrisans-semibold.eot');
|
112
|
+
src: url('#{$path-to-fonts}/cerebrisans/cerebrisans-semibold.eot?#iefix') format('embedded-opentype'), url('#{$path-to-fonts}/cerebrisans/cerebrisans-semibold.woff') format('woff'), url('#{$path-to-fonts}/cerebrisans/cerebrisans-semibold.ttf') format('truetype');
|
113
|
+
font-weight: 600;
|
114
|
+
font-style: normal;
|
115
|
+
}
|
File without changes
|
@@ -0,0 +1,60 @@
|
|
1
|
+
//
|
2
|
+
// overrides.scss
|
3
|
+
// Dark mode overrides
|
4
|
+
//
|
5
|
+
|
6
|
+
//
|
7
|
+
// Table of contents
|
8
|
+
//
|
9
|
+
// 1. Buttons
|
10
|
+
// 2. Forms
|
11
|
+
// 3. Input groups
|
12
|
+
// 4. Quill
|
13
|
+
// 5. Select2
|
14
|
+
//
|
15
|
+
|
16
|
+
|
17
|
+
// Buttons
|
18
|
+
|
19
|
+
.btn-white, .btn-light {
|
20
|
+
@include button-variant($gray-800-dark, $gray-600-dark);
|
21
|
+
|
22
|
+
&:not(:disabled):not(.disabled):hover,
|
23
|
+
&:not(:disabled):not(.disabled):focus,
|
24
|
+
&:not(:disabled):not(.disabled):active,
|
25
|
+
&:not(:disabled):not(.disabled).active,
|
26
|
+
&:not(:disabled):not(.disabled):active:focus,
|
27
|
+
&:not(:disabled):not(.disabled).active:focus,
|
28
|
+
.show > &.dropdown-toggle {
|
29
|
+
background-color: $black-dark;
|
30
|
+
border-color: $gray-700-dark;
|
31
|
+
color: $white;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
|
36
|
+
// Forms
|
37
|
+
|
38
|
+
.form-control {
|
39
|
+
border-color: $input-bg;
|
40
|
+
}
|
41
|
+
|
42
|
+
|
43
|
+
// Input groups
|
44
|
+
|
45
|
+
.input-group .input-group-text {
|
46
|
+
border-color: $input-bg;
|
47
|
+
}
|
48
|
+
|
49
|
+
|
50
|
+
// Quill
|
51
|
+
|
52
|
+
.ql-toolbar {
|
53
|
+
border-color: $input-bg;
|
54
|
+
}
|
55
|
+
|
56
|
+
.ql-editor {
|
57
|
+
border-left-color: $input-bg;
|
58
|
+
border-right-color: $input-bg;
|
59
|
+
border-bottom-color: $input-bg;
|
60
|
+
}
|
@@ -0,0 +1,219 @@
|
|
1
|
+
//
|
2
|
+
// variables-dark.scss
|
3
|
+
// Dashkit dark version
|
4
|
+
//
|
5
|
+
|
6
|
+
//
|
7
|
+
// Bootstrap Overrides ===================================
|
8
|
+
//
|
9
|
+
|
10
|
+
|
11
|
+
//
|
12
|
+
// Color system
|
13
|
+
//
|
14
|
+
|
15
|
+
$white: #FFFFFF !default;
|
16
|
+
$gray-300: #E3EBF6 !default;
|
17
|
+
$gray-600: #95AAC9 !default;
|
18
|
+
$gray-700: #6E84A3 !default;
|
19
|
+
$gray-900: #283E59 !default;
|
20
|
+
$black: #12263F !default;
|
21
|
+
|
22
|
+
$gray-600-dark: #244166 !default;
|
23
|
+
$gray-700-dark: #1E3A5C !default;
|
24
|
+
$gray-800-dark: #152E4D !default;
|
25
|
+
$gray-900-dark: #132A46 !default;
|
26
|
+
$black-dark: #12263F !default;
|
27
|
+
|
28
|
+
$light: $gray-800-dark !default;
|
29
|
+
$lighter: $gray-900-dark !default;
|
30
|
+
|
31
|
+
|
32
|
+
// Body
|
33
|
+
//
|
34
|
+
// Settings for the `<body>` element.
|
35
|
+
|
36
|
+
$body-bg: $black-dark !default;
|
37
|
+
$body-color: $white !default;
|
38
|
+
|
39
|
+
|
40
|
+
// Components
|
41
|
+
//
|
42
|
+
// Define common padding and border radius sizes and more.
|
43
|
+
|
44
|
+
$border-color: $gray-700-dark !default;
|
45
|
+
|
46
|
+
|
47
|
+
// Fonts
|
48
|
+
//
|
49
|
+
// Font, line-height, and color for body text, headings, and more.
|
50
|
+
|
51
|
+
$text-muted: $gray-700 !default;
|
52
|
+
|
53
|
+
|
54
|
+
// Tables
|
55
|
+
//
|
56
|
+
// Customizes the `.table` component with basic values, each used across all table variations.
|
57
|
+
|
58
|
+
$table-border-color: $border-color !default;
|
59
|
+
|
60
|
+
$table-head-bg: $black-dark !default;
|
61
|
+
|
62
|
+
$table-accent-bg: $gray-900-dark !default;
|
63
|
+
$table-hover-bg: $gray-900-dark !default;
|
64
|
+
$table-active-bg: $gray-900-dark !default;
|
65
|
+
|
66
|
+
$table-bg-level: 0 !default;
|
67
|
+
$table-border-level: 0 !default;
|
68
|
+
|
69
|
+
|
70
|
+
// Forms
|
71
|
+
|
72
|
+
$input-bg: $gray-700-dark !default;
|
73
|
+
|
74
|
+
$input-color: $white !default;
|
75
|
+
$input-border-color: $black-dark !default;
|
76
|
+
|
77
|
+
$input-placeholder-color: $gray-600 !default;
|
78
|
+
|
79
|
+
$custom-control-indicator-bg: $gray-600-dark !default;
|
80
|
+
|
81
|
+
|
82
|
+
// Dropdowns
|
83
|
+
//
|
84
|
+
// Dropdown menu container and contents.
|
85
|
+
|
86
|
+
$dropdown-bg: $gray-800-dark !default;
|
87
|
+
$dropdown-border-color: $black !default;
|
88
|
+
$dropdown-divider-bg: $black !default;
|
89
|
+
|
90
|
+
$dropdown-link-color: $text-muted !default;
|
91
|
+
$dropdown-link-hover-color: $white !default;
|
92
|
+
|
93
|
+
|
94
|
+
// Navbar
|
95
|
+
|
96
|
+
$navbar-dark-color: $gray-700 !default;
|
97
|
+
$navbar-dark-hover-color: $black !default;
|
98
|
+
$navbar-dark-active-color: $black !default;
|
99
|
+
$navbar-dark-toggler-border-color: transparent !default;
|
100
|
+
|
101
|
+
$navbar-dark-bg: $white !default;
|
102
|
+
$navbar-dark-border-color: $white !default;
|
103
|
+
$navbar-dark-heading-color: $text-muted !default;
|
104
|
+
$navbar-dark-divider-color: $gray-300 !default;
|
105
|
+
$navbar-dark-brand-filter: none;
|
106
|
+
|
107
|
+
$navbar-dark-input-bg: $input-bg !default;
|
108
|
+
$navbar-dark-input-border-color: $input-border-color !default;
|
109
|
+
|
110
|
+
$navbar-light-hover-color: $white !default;
|
111
|
+
$navbar-light-active-color: $white !default;
|
112
|
+
$navbar-light-input-bg: $gray-700-dark !default;
|
113
|
+
$navbar-light-input-border-color: $black-dark !default;
|
114
|
+
|
115
|
+
|
116
|
+
// Pagination
|
117
|
+
|
118
|
+
$pagination-color: $white !default;
|
119
|
+
$pagination-bg: $gray-800-dark !default;
|
120
|
+
$pagination-border-color: $gray-600-dark !default;
|
121
|
+
|
122
|
+
$pagination-hover-color: $white !default;
|
123
|
+
$pagination-hover-bg: $gray-900-dark !default;
|
124
|
+
$pagination-hover-border-color: $gray-700-dark !default;
|
125
|
+
|
126
|
+
$pagination-disabled-bg: $gray-900-dark !default;
|
127
|
+
$pagination-disabled-border-color: $gray-700-dark !default;
|
128
|
+
|
129
|
+
|
130
|
+
// Jumbotron
|
131
|
+
|
132
|
+
$jumbotron-bg: $gray-800-dark !default;
|
133
|
+
|
134
|
+
|
135
|
+
// Cards
|
136
|
+
|
137
|
+
$card-bg: $gray-800-dark !default;
|
138
|
+
$card-border-color: $border-color !default;
|
139
|
+
|
140
|
+
|
141
|
+
// Tooltips
|
142
|
+
|
143
|
+
$tooltip-bg: $gray-800-dark !default;
|
144
|
+
$tooltip-color: $white !default;
|
145
|
+
|
146
|
+
|
147
|
+
// Popovers
|
148
|
+
|
149
|
+
$popover-bg: $gray-800-dark !default;
|
150
|
+
$popover-border-color: $black !default;
|
151
|
+
|
152
|
+
|
153
|
+
// Toasts
|
154
|
+
|
155
|
+
$toast-background-color: $gray-800-dark !default;
|
156
|
+
;
|
157
|
+
|
158
|
+
|
159
|
+
// Modals
|
160
|
+
|
161
|
+
$modal-content-bg: $gray-800-dark !default;
|
162
|
+
$modal-content-border-color: $black !default;
|
163
|
+
|
164
|
+
|
165
|
+
// Progress bars
|
166
|
+
|
167
|
+
$progress-bg: $gray-600-dark !default;
|
168
|
+
|
169
|
+
|
170
|
+
//
|
171
|
+
// Dashkit =====================================
|
172
|
+
//
|
173
|
+
|
174
|
+
// Auth
|
175
|
+
|
176
|
+
$auth-bg: $body-bg !default;
|
177
|
+
|
178
|
+
|
179
|
+
// Avatar
|
180
|
+
|
181
|
+
$avatar-title-bg: $gray-600-dark !default;
|
182
|
+
|
183
|
+
|
184
|
+
// Badges
|
185
|
+
|
186
|
+
$badge-soft-bg-level: 10 !default;
|
187
|
+
|
188
|
+
|
189
|
+
// Cards
|
190
|
+
|
191
|
+
$card-outline-color: $gray-800-dark !default;
|
192
|
+
$card-box-shadow: 0 .75rem 1.5rem transparentize($black-dark, .5) !default;
|
193
|
+
|
194
|
+
|
195
|
+
// Comment
|
196
|
+
|
197
|
+
$comment-body-bg: $gray-700-dark;
|
198
|
+
|
199
|
+
|
200
|
+
// Header
|
201
|
+
|
202
|
+
$header-body-border-color-dark: $border-color !default;
|
203
|
+
|
204
|
+
|
205
|
+
// Navbar
|
206
|
+
|
207
|
+
$navbar-light-bg: $gray-800-dark !default;
|
208
|
+
$navbar-light-border-color: $gray-800-dark !default;
|
209
|
+
|
210
|
+
|
211
|
+
// Switch
|
212
|
+
|
213
|
+
$custom-switch-indicator-bg: $gray-800-dark !default;
|
214
|
+
$custom-switch-indicator-active-bg: $white !default;
|
215
|
+
|
216
|
+
|
217
|
+
// Backgrounds
|
218
|
+
|
219
|
+
$bg-soft-level: 10 !default;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
// Badge Mixins
|
2
|
+
//
|
3
|
+
// This is a custom mixin for badge-#{color}-soft variant of Bootstrap's .badge class
|
4
|
+
|
5
|
+
@mixin badge-variant-soft($bg, $color) {
|
6
|
+
color: $color;
|
7
|
+
background-color: $bg;
|
8
|
+
|
9
|
+
&[href] {
|
10
|
+
@include hover-focus {
|
11
|
+
color: $color;
|
12
|
+
text-decoration: none;
|
13
|
+
background-color: darken($bg, 5%);
|
14
|
+
}
|
15
|
+
}
|
16
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
//
|
2
|
+
// breakpoint.scss
|
3
|
+
// Extended from Bootstrap
|
4
|
+
//
|
5
|
+
|
6
|
+
@function breakpoint-prev($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {
|
7
|
+
$n: index($breakpoint-names, $name);
|
8
|
+
@return if($n != null and $n != 1, nth($breakpoint-names, $n - 1), null);
|
9
|
+
}
|