@dashadmin/dash-styles 1.3.17 → 1.3.19
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/dist/assets/fonts/Montserrat-Black.ttf +0 -0
- package/dist/assets/fonts/Montserrat-Bold.ttf +0 -0
- package/dist/assets/fonts/Montserrat-Medium.ttf +0 -0
- package/dist/assets/fonts/Montserrat-Regular.ttf +0 -0
- package/dist/assets/fonts/Montserrat-SemiBold.ttf +0 -0
- package/dist/dash-css-transformer.less +766 -0
- package/dist/dash-variables.less +10 -0
- package/dist/dash.less +38 -0
- package/dist/helpers/getAllCssVariablesFromStyleSheets.js +1 -0
- package/dist/index.tsx.suffixed +680 -0
- package/dist/styles/button.less +120 -0
- package/dist/styles/buttons.less +10 -0
- package/dist/styles/card.less +337 -0
- package/dist/styles/common.less +62 -0
- package/dist/styles/components/notfound.less +50 -0
- package/dist/styles/extra.less +25 -0
- package/dist/styles/filters.less +7 -0
- package/dist/styles/forms.less +41 -0
- package/dist/styles/framed.less +45 -0
- package/dist/styles/header.less +879 -0
- package/dist/styles/input.copy.less +223 -0
- package/dist/styles/input.less +223 -0
- package/dist/styles/layout.less +296 -0
- package/dist/styles/links.less +28 -0
- package/dist/styles/loader.less +20 -0
- package/dist/styles/login.less +331 -0
- package/dist/styles/modal.less +0 -0
- package/dist/styles/module.less +29 -0
- package/dist/styles/mui-overrides.less +62 -0
- package/dist/styles/notification.less +46 -0
- package/dist/styles/pages/profile.less +139 -0
- package/dist/styles/pagination.less +90 -0
- package/dist/styles/popover.less +21 -0
- package/dist/styles/react-admin/common.less +184 -0
- package/dist/styles/react-admin/toolbar.less +22 -0
- package/dist/styles/root.less +13 -0
- package/dist/styles/sidebar.less +705 -0
- package/dist/styles/splash.less +44 -0
- package/dist/styles/static.less +59 -0
- package/dist/styles/stats.less +5 -0
- package/dist/styles/svg.less +30 -0
- package/dist/styles/switch.less +7 -0
- package/dist/styles/table.less +196 -0
- package/dist/styles/tabs.less +173 -0
- package/dist/styles/tags.less +97 -0
- package/dist/styles/toast.less +83 -0
- package/dist/styles/toolbar.less +90 -0
- package/dist/styles/transition.less +226 -0
- package/dist/styles/uploader.less +38 -0
- package/dist/variables/breakpoints.less +35 -0
- package/dist/variables/colors.less +205 -0
- package/dist/variables/dash-colors.less +52 -0
- package/dist/variables/sizes.less +150 -0
- package/package.json +14 -3
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
.toolbar-filters > div {
|
|
2
|
+
display: flex;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.toolbar-settings {
|
|
6
|
+
position: absolute;
|
|
7
|
+
right: 0px;
|
|
8
|
+
top: 0px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.toolbar-buttons {
|
|
12
|
+
align-items: center;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/*
|
|
16
|
+
.toolbar-collapse-button {
|
|
17
|
+
right: 10px;
|
|
18
|
+
bottom: 10px;
|
|
19
|
+
}
|
|
20
|
+
*/
|
|
21
|
+
/*
|
|
22
|
+
.toolbar-settings-button {
|
|
23
|
+
right: 10px;
|
|
24
|
+
top: 10px;
|
|
25
|
+
}
|
|
26
|
+
*/
|
|
27
|
+
.toolbar-right-buttons {
|
|
28
|
+
position: absolute;
|
|
29
|
+
top: 0;
|
|
30
|
+
right: 2px;
|
|
31
|
+
display: flex;
|
|
32
|
+
z-index: 5;
|
|
33
|
+
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
.toolbar-filters {
|
|
39
|
+
display: flex;
|
|
40
|
+
flex-direction: column;
|
|
41
|
+
justify-content: space-around;
|
|
42
|
+
|
|
43
|
+
/*> .MuiBox-root {
|
|
44
|
+
display: flex;
|
|
45
|
+
align-items: end;
|
|
46
|
+
}
|
|
47
|
+
&-filter-button {
|
|
48
|
+
position: absolute;
|
|
49
|
+
right: 36px;
|
|
50
|
+
top: -10px;
|
|
51
|
+
}*/
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/*
|
|
55
|
+
.top-toolbar, .top-toolbar-default {
|
|
56
|
+
// background: var(--module-bg);
|
|
57
|
+
// border-radius: 12px;
|
|
58
|
+
// padding: 15px;
|
|
59
|
+
box-shadow: none;
|
|
60
|
+
padding: 0 0 0 8px;
|
|
61
|
+
}
|
|
62
|
+
.top-toolbar > .MuiToolbar-root {
|
|
63
|
+
box-shadow: unset !important;
|
|
64
|
+
padding: 1rem !important;
|
|
65
|
+
position: relative;
|
|
66
|
+
}
|
|
67
|
+
*/
|
|
68
|
+
|
|
69
|
+
//.top-toolbar-default {
|
|
70
|
+
//padding: 5px;
|
|
71
|
+
//padding-top:15px;;
|
|
72
|
+
//background: var(--module-bg);
|
|
73
|
+
//border-radius: 12px;
|
|
74
|
+
//margin-bottom:3px;
|
|
75
|
+
//}
|
|
76
|
+
|
|
77
|
+
/*
|
|
78
|
+
|
|
79
|
+
.MuiToolbar-root-RaTopToolbar-root{
|
|
80
|
+
min-height: unset !important;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.MuiToolbar-root.MuiToolbar-gutters.MuiToolbar-regular{
|
|
84
|
+
display: flex;
|
|
85
|
+
align-items: center;
|
|
86
|
+
> *{
|
|
87
|
+
margin: 0;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
*/
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
.transition-container {
|
|
2
|
+
transition: opacity 500ms ease-in-out;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.transition-container.transitioning {
|
|
6
|
+
opacity: 0.5;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.motion-wrapper-bg {
|
|
10
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
11
|
+
width: 100%;
|
|
12
|
+
height: 100%;
|
|
13
|
+
z-index: 1000;
|
|
14
|
+
position: absolute;
|
|
15
|
+
top: 0;
|
|
16
|
+
left: 0;
|
|
17
|
+
pointer-events: none;
|
|
18
|
+
z-index: 100;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.spinner-container {
|
|
22
|
+
position: fixed;
|
|
23
|
+
top: 0;
|
|
24
|
+
left: 0;
|
|
25
|
+
right: 0;
|
|
26
|
+
bottom: 0;
|
|
27
|
+
display: flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
pointer-events: none;
|
|
31
|
+
z-index: 100;
|
|
32
|
+
transition: opacity 500ms ease-in-out;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/* Add this to your global CSS or styled component */
|
|
36
|
+
.react-beautiful-dnd-dragging {
|
|
37
|
+
/* Prevent horizontal scrolling during drag */
|
|
38
|
+
overflow-x: hidden !important;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/* Ensure the drag preview doesn't cause layout issues */
|
|
42
|
+
[data-rbd-drag-handle-draggable-id] {
|
|
43
|
+
transition: transform 0.2s ease !important;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/* Style the placeholder to maintain proper spacing */
|
|
47
|
+
[data-rbd-placeholder-context-id] {
|
|
48
|
+
transition: height 0.2s ease !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.spinner-in {
|
|
52
|
+
opacity: 1;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.spinner-out {
|
|
56
|
+
opacity: 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.slide-in {
|
|
60
|
+
//z-index: 3000;
|
|
61
|
+
position: fixed;
|
|
62
|
+
top: calc(50% - 40px) !important;
|
|
63
|
+
left: calc(50% - 40px) !important;
|
|
64
|
+
//transform: translate(-50%, -50%);
|
|
65
|
+
width: 100px;
|
|
66
|
+
height: 100px;
|
|
67
|
+
background-color: var(--primary-color);
|
|
68
|
+
padding: 10px;
|
|
69
|
+
box-sizing: border-box;
|
|
70
|
+
transform-origin: center;
|
|
71
|
+
border-radius: 50%;
|
|
72
|
+
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.slide-out {
|
|
76
|
+
//z-index: 3000;
|
|
77
|
+
position: fixed;
|
|
78
|
+
top: calc(50% - 40px) !important;
|
|
79
|
+
left: calc(50% - 40px) !important;
|
|
80
|
+
transform: translate(-50%, -50%);
|
|
81
|
+
width: 100px;
|
|
82
|
+
height: 100px;
|
|
83
|
+
background-color: var(--primary-color);
|
|
84
|
+
padding: 10px;
|
|
85
|
+
box-sizing: border-box;
|
|
86
|
+
transform-origin: center;
|
|
87
|
+
border-radius: 50%;
|
|
88
|
+
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.fade-in {
|
|
92
|
+
position: fixed;
|
|
93
|
+
top: 50%;
|
|
94
|
+
left: 50%;
|
|
95
|
+
transform: translate(-50%, -50%);
|
|
96
|
+
width: 100px;
|
|
97
|
+
height: 100px;
|
|
98
|
+
background-color: var(--primary-color);
|
|
99
|
+
padding: 10px;
|
|
100
|
+
box-sizing: border-box;
|
|
101
|
+
transform-origin: center;
|
|
102
|
+
border-radius: 50%;
|
|
103
|
+
opacity: 1;
|
|
104
|
+
transition: opacity 0.3s ease-in;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.fade-out {
|
|
108
|
+
position: fixed;
|
|
109
|
+
top: 50%;
|
|
110
|
+
left: 50%;
|
|
111
|
+
transform: translate(-50%, -50%);
|
|
112
|
+
width: 100px;
|
|
113
|
+
height: 100px;
|
|
114
|
+
background-color: var(--primary-color);
|
|
115
|
+
padding: 10px;
|
|
116
|
+
box-sizing: border-box;
|
|
117
|
+
transform-origin: center;
|
|
118
|
+
border-radius: 50%;
|
|
119
|
+
opacity: 0;
|
|
120
|
+
transition: opacity 0.3s ease-out;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
.lds-ring {
|
|
126
|
+
display: inline-block;
|
|
127
|
+
position: relative;
|
|
128
|
+
width: 80px;
|
|
129
|
+
height: 80px;
|
|
130
|
+
z-index: 200;
|
|
131
|
+
|
|
132
|
+
&::after {
|
|
133
|
+
content: '';
|
|
134
|
+
position: absolute;
|
|
135
|
+
top: 50%;
|
|
136
|
+
left: 50%;
|
|
137
|
+
transform: translate(-50%, -50%);
|
|
138
|
+
width: 32px;
|
|
139
|
+
height: 32px;
|
|
140
|
+
background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwNDlweCIgaGVpZ2h0PSIyMDQ5cHgiIHN0eWxlPSJzaGFwZS1yZW5kZXJpbmc6Z2VvbWV0cmljUHJlY2lzaW9uOyB0ZXh0LXJlbmRlcmluZzpnZW9tZXRyaWNQcmVjaXNpb247IGltYWdlLXJlbmRlcmluZzpvcHRpbWl6ZVF1YWxpdHk7IGZpbGwtcnVsZTpldmVub2RkOyBjbGlwLXJ1bGU6ZXZlbm9kZCIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgoKPGc+PHBhdGggc3R5bGU9Im9wYWNpdHk6MSIgZmlsbD0iI0ZGRkZGRiIgZD0iTSAxNDczLjUsMTU4Ni41IEMgMTQ5OS42NiwxNTg3LjUgMTUyNS45OSwxNTg3LjgzIDE1NTIuNSwxNTg3LjVDIDE1NTIuNSwxNjQyLjE3IDE1NTIuNSwxNjk2LjgzIDE1NTIuNSwxNzUxLjVDIDE1MTQuNSwxNzUxLjUgMTQ3Ni41LDE3NTEuNSAxNDM4LjUsMTc1MS41QyAxMzk4LjAzLDE3NTEuMDkgMTM1OS42OSwxNzQxLjkyIDEzMjMuNSwxNzI0QyAxMjgzLjIyLDE3MDIuNzEgMTI1Ni4zOSwxNjcwLjIxIDEyNDMsMTYyNi41QyAxMjM2LjI5LDE2MDMuMyAxMjMyLjI5LDE1NzkuNjQgMTIzMSwxNTU1LjVDIDEyMzAuNSwxNDYzLjE3IDEyMzAuMzMsMTM3MC44MyAxMjMwLjUsMTI3OC41QyAxMjA0LjUsMTI3OC41IDExNzguNSwxMjc4LjUgMTE1Mi41LDEyNzguNUMgMTE1Mi42NywxMjQ0LjUgMTE1Mi41LDEyMTAuNSAxMTUyLDExNzYuNUMgMTA4MC4zMSwxMjYyLjY5IDEwMDguODEsMTM0OS4wMiA5MzcuNSwxNDM1LjVDIDEwMjUuNjEsMTU0MC43NiAxMTEzLjk1LDE2NDUuNzYgMTIwMi41LDE3NTAuNUMgMTEyMi42NywxNzUxLjUgMTA0Mi42NywxNzUxLjgzIDk2Mi41LDE3NTEuNUMgODk4LjAyMSwxNjYzLjIzIDgzMy41MjEsMTU3NC45IDc2OSwxNDg2LjVDIDc2OC41LDE1NzQuODMgNzY4LjMzMywxNjYzLjE3IDc2OC41LDE3NTEuNUMgNzAzLjgzMywxNzUxLjUgNjM5LjE2NywxNzUxLjUgNTc0LjUsMTc1MS41QyA1NzQuODMzLDE0OTYuODMgNTc0LjUsMTI0Mi4xNyA1NzMuNSw5ODcuNUMgNTE3LjA2Miw5NjkuNTYyIDQ4MC4yMjksOTMyLjIyOSA0NjMsODc1LjVDIDQ2MC41NzUsODY0LjYxNSA0NTguOTA4LDg1My42MTUgNDU4LDg0Mi41QyA0NTcuMzMzLDY2Mi41IDQ1Ny4zMzMsNDgyLjUgNDU4LDMwMi41QyA0NjguMjA1LDI3Mi4wODkgNDg4LjcwNSwyNjEuNTg5IDUxOS41LDI3MUMgNTMyLjU0MiwyNzcuNzA5IDU0MC43MDksMjg4LjIwOSA1NDQsMzAyLjVDIDU0NC4zMzMsNDQyLjE2NyA1NDQuNjY3LDU4MS44MzMgNTQ1LDcyMS41QyA1NDkuMzA3LDczMS4zNjEgNTU2LjQ3NCw3MzQuMTk1IDU2Ni41LDczMEMgNTY5LjQ2Miw3MjcuNzEzIDU3MS42MjksNzI0Ljg4IDU3Myw3MjEuNUMgNTczLjMzMyw1ODIuMTY3IDU3My42NjcsNDQyLjgzMyA1NzQsMzAzLjVDIDU4Mi4wODcsMjc1LjM2OSA2MDAuNTg3LDI2My44NjkgNjI5LjUsMjY5QyA2NDUuODQ4LDI3NC4wMTUgNjU2LjAxNSwyODQuODQ4IDY2MCwzMDEuNUMgNjYwLjMzMyw0NDEuMTY3IDY2MC42NjcsNTgwLjgzMyA2NjEsNzIwLjVDIDY2Ni41MTIsNzMyLjQzMSA2NzQuODQ2LDczNC43NjUgNjg2LDcyNy41QyA2ODcsNzI1LjgzMyA2ODgsNzI0LjE2NyA2ODksNzIyLjVDIDY4OS4zMzMsNTgzLjE2NyA2ODkuNjY3LDQ0My44MzMgNjkwLDMwNC41QyA2OTcuMzMzLDI3Ny4wNzUgNzE1LjE2NiwyNjQuOTA5IDc0My41LDI2OEMgNzYwLjMzMywyNzIuODMzIDc3MS4xNjcsMjgzLjY2NyA3NzYsMzAwLjVDIDc3Ny4zMjUsNDQxLjEzMiA3NzcuOTkyLDU4MS43OTkgNzc4LDcyMi41QyA3ODMuMjUxLDczMS44NDQgNzkwLjc1MSw3MzQuMDExIDgwMC41LDcyOUMgODAyLjk1Niw3MjYuNTkyIDgwNC43ODksNzIzLjc1OSA4MDYsNzIwLjVDIDgwNi4zMzMsNTgwLjUgODA2LjY2Nyw0NDAuNSA4MDcsMzAwLjVDIDgxMC44NDYsMjg1Ljk4OCA4MTkuNjgsMjc1LjgyMSA4MzMuNSwyNzBDIDg1NC44MTksMjYzLjY2MyA4NzIuMzE5LDI2OS4xNjMgODg2LDI4Ni41QyA4ODguNTUxLDI5MC45MzUgODkwLjU1MSwyOTUuNjAxIDg5MiwzMDAuNUMgODkzLjE2MiwzOTEuMjkgODkzLjY2Miw0ODIuMTI0IDg5My41LDU3M0MgODkzLjY1NCw2NjUuODUyIDg5My4xNTQsNzU4LjY4NSA4OTIsODUxLjVDIDg4MC4yNzMsOTIzLjU2MiA4MzkuMjczLDk2OS41NjIgNzY5LDk4OS41QyA3NjguMzMzLDExMTcuODMgNzY4LjMzMywxMjQ2LjE3IDc2OSwxMzc0LjVDIDgzMy4yODgsMTI4OC43NiA4OTcuNDU1LDEyMDIuOTIgOTYxLjUsMTExN0MgMTA1MS4xNywxMTE2LjUgMTE0MC44MywxMTE2LjMzIDEyMzAuNSwxMTE2LjVDIDEyMzAuNjcsMTA3Mi4xNyAxMjMwLjUsMTAyNy44MyAxMjMwLDk4My41QyAxMTUyLjE5LDk2My4zNTUgMTA5Ny41Myw5MTYuMzU1IDEwNjYsODQyLjVDIDEwNDkuMTQsNzk5LjQ2MyAxMDQwLjE0LDc1NC43OTcgMTAzOSw3MDguNUMgMTAzNi4xNiw2MTguMTc4IDEwNTIuNSw1MzEuNTExIDEwODgsNDQ4LjVDIDExMDguNyw0MDEuODIyIDExMzcuMiwzNjAuNjU2IDExNzMuNSwzMjVDIDEyMDcuMjQsMjkzLjk2OCAxMjQ2LjksMjc0Ljk2OCAxMjkyLjUsMjY4QyAxMzUxLjg0LDI2My4yMjYgMTQwMy44NCwyODAuMjI2IDE0NDguNSwzMTlDIDE0ODkuMTIsMzU2LjM3MyAxNTIwLjI5LDQwMC41NCAxNTQyLDQ1MS41QyAxNTg1LjgxLDU1NC45NzIgMTU5OS40OCw2NjIuMzA1IDE1ODMsNzczLjVDIDE1NzQuNDUsODI0LjkxNSAxNTUzLjc4LDg3MC41ODEgMTUyMSw5MTAuNUMgMTQ5NC4zOCw5NDAuMjI0IDE0NjIuMjIsOTYxLjU1NyAxNDI0LjUsOTc0LjVDIDE0MjQuNSwxMDIxLjgzIDE0MjQuNSwxMDY5LjE3IDE0MjQuNSwxMTE2LjVDIDE0NjYuODMsMTExNi41IDE1MDkuMTcsMTExNi41IDE1NTEuNSwxMTE2LjVDIDE1NTEuNSwxMTcwLjUgMTU1MS41LDEyMjQuNSAxNTUxLjUsMTI3OC41QyAxNTA5LjE3LDEyNzguNSAxNDY2LjgzLDEyNzguNSAxNDI0LjUsMTI3OC41QyAxNDI0LjMzLDEzNjcuNSAxNDI0LjUsMTQ1Ni41IDE0MjUsMTU0NS41QyAxNDI5LjIsMTU3My4wNSAxNDQ1LjM3LDE1ODYuNzIgMTQ3My41LDE1ODYuNSBaIi8+PC9nPgo8Zz48cGF0aCBzdHlsZT0ib3BhY2l0eToxIiBmaWxsPSIjYzJlMjliIiBkPSJNIDE0NzMuNSwxNTg2LjUgQyAxNTAwLjE3LDE1ODYuNSAxNTI2LjgzLDE1ODYuNSAxNTUzLjUsMTU4Ni41QyAxNTUzLjUsMTY0MS44MyAxNTUzLjUsMTY5Ny4xNyAxNTUzLjUsMTc1Mi41QyAxNTE1LDE3NTIuODMgMTQ3Ni42NiwxNzUyLjUgMTQzOC41LDE3NTEuNUMgMTQ3Ni41LDE3NTEuNSAxNTE0LjUsMTc1MS41IDE1NTIuNSwxNzUxLjVDIDE1NTIuNSwxNjk2LjgzIDE1NTIuNSwxNjQyLjE3IDE1NTIuNSwxNTg3LjVDIDE1MjUuOTksMTU4Ny44MyAxNDk5LjY2LDE1ODcuNSAxNDczLjUsMTU4Ni41IFoiLz48L2c+CjxnPjxwYXRoIHN0eWxlPSJvcGFjaXR5OjEiIGZpbGw9IiNiOWRlOGMiIGQ9Ik0gMTIwMi41LDE3NTAuNSBDIDEyMDMuMDQsMTc1MC41NiAxMjAzLjM4LDE3NTAuODkgMTIwMy41LDE3NTEuNUMgMTEyMywxNzUyLjgzIDEwNDIuNjcsMTc1Mi44MyA5NjIuNSwxNzUxLjVDIDEwNDIuNjcsMTc1MS44MyAxMTIyLjY3LDE3NTEuNSAxMjAyLjUsMTc1MC41IFoiLz48L2c+Cjwvc3ZnPgo=');
|
|
141
|
+
background-size: contain;
|
|
142
|
+
background-repeat: no-repeat;
|
|
143
|
+
z-index: 201;
|
|
144
|
+
pointer-events: none;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
.lds-ring div {
|
|
148
|
+
box-sizing: border-box;
|
|
149
|
+
display: block;
|
|
150
|
+
position: absolute;
|
|
151
|
+
top:0;
|
|
152
|
+
left:0;
|
|
153
|
+
width: 64px;
|
|
154
|
+
height: 64px;
|
|
155
|
+
margin: 8px;
|
|
156
|
+
border: 8px solid #fff;
|
|
157
|
+
border-radius: 50%;
|
|
158
|
+
animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
|
|
159
|
+
border-color: #fff transparent transparent transparent;
|
|
160
|
+
}
|
|
161
|
+
.lds-ring div:nth-child(1) {
|
|
162
|
+
animation-delay: -0.45s;
|
|
163
|
+
}
|
|
164
|
+
.lds-ring div:nth-child(2) {
|
|
165
|
+
animation-delay: -0.3s;
|
|
166
|
+
}
|
|
167
|
+
.lds-ring div:nth-child(3) {
|
|
168
|
+
animation-delay: -0.15s;
|
|
169
|
+
}
|
|
170
|
+
@keyframes lds-ring {
|
|
171
|
+
0% {
|
|
172
|
+
transform: rotate(0deg);
|
|
173
|
+
}
|
|
174
|
+
100% {
|
|
175
|
+
transform: rotate(360deg);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
.lds-ripple {
|
|
181
|
+
display: inline-block;
|
|
182
|
+
position: relative;
|
|
183
|
+
width: 76px;
|
|
184
|
+
height: 76px;
|
|
185
|
+
z-index: 12;
|
|
186
|
+
}
|
|
187
|
+
.lds-ripple div {
|
|
188
|
+
position: absolute;
|
|
189
|
+
border: 4px solid #fff;
|
|
190
|
+
opacity: 1;
|
|
191
|
+
border-radius: 50%;
|
|
192
|
+
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
|
|
193
|
+
}
|
|
194
|
+
.lds-ripple div:nth-child(2) {
|
|
195
|
+
animation-delay: -0.5s;
|
|
196
|
+
}
|
|
197
|
+
@keyframes lds-ripple {
|
|
198
|
+
0% {
|
|
199
|
+
top: 36px;
|
|
200
|
+
left: 36px;
|
|
201
|
+
width: 0;
|
|
202
|
+
height: 0;
|
|
203
|
+
opacity: 0;
|
|
204
|
+
}
|
|
205
|
+
4.9% {
|
|
206
|
+
top: 36px;
|
|
207
|
+
left: 36px;
|
|
208
|
+
width: 0;
|
|
209
|
+
height: 0;
|
|
210
|
+
opacity: 0;
|
|
211
|
+
}
|
|
212
|
+
5% {
|
|
213
|
+
top: 36px;
|
|
214
|
+
left: 36px;
|
|
215
|
+
width: 0;
|
|
216
|
+
height: 0;
|
|
217
|
+
opacity: 1;
|
|
218
|
+
}
|
|
219
|
+
100% {
|
|
220
|
+
top: 0px;
|
|
221
|
+
left: 0px;
|
|
222
|
+
width: 72px;
|
|
223
|
+
height: 72px;
|
|
224
|
+
opacity: 0;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
.file-dragdrop-component {
|
|
2
|
+
display: inline-block;
|
|
3
|
+
width:100%;
|
|
4
|
+
border: 3px var(--primary-color) dashed;
|
|
5
|
+
border-radius: 16px;
|
|
6
|
+
padding:16px;
|
|
7
|
+
margin: 15px 0px;
|
|
8
|
+
background-color: white;
|
|
9
|
+
label {
|
|
10
|
+
font-size: 16px;
|
|
11
|
+
font-weight: bold;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.file-dragdrop-wrapper {
|
|
17
|
+
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.file-dragdrop-text {
|
|
21
|
+
|
|
22
|
+
font-size: 16px;
|
|
23
|
+
text-align: center;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
.file-dragdrop-files {
|
|
28
|
+
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.file-dragdrop-file {
|
|
32
|
+
width:70px;
|
|
33
|
+
float: left;
|
|
34
|
+
margin: 5px;
|
|
35
|
+
span {
|
|
36
|
+
font-size: 10px;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// BREAKPOINTS
|
|
2
|
+
@sidebar-large-width: 255px;
|
|
3
|
+
@sidebar-small-width: 64px;
|
|
4
|
+
|
|
5
|
+
// Breakpoints
|
|
6
|
+
@screen-xs: 0; // Extra small devices (phones, less than 576px)
|
|
7
|
+
@screen-sm: 576px; // Small devices (tablets, 576px and up)
|
|
8
|
+
@screen-md: 768px; // Medium devices (desktops, 768px and up)
|
|
9
|
+
@screen-lg: 992px; // Large devices (desktops, 992px and up)
|
|
10
|
+
@screen-xl: 1200px; // Extra large devices (large desktops, 1200px and up)
|
|
11
|
+
@screen-xxl: 1400px; // Extra extra large devices (larger desktops, 1400px and up)
|
|
12
|
+
|
|
13
|
+
// Custom Min Breakpoints
|
|
14
|
+
@screen-xs-min: @screen-xs; // Min width for extra small devices
|
|
15
|
+
@screen-sm-min: @screen-sm; // Min width for small devices
|
|
16
|
+
@screen-md-min: @screen-md; // Min width for medium devices
|
|
17
|
+
@screen-lg-min: @screen-lg; // Min width for large devices
|
|
18
|
+
@screen-xl-min: @screen-xl; // Min width for extra large devices
|
|
19
|
+
@screen-xxl-min: @screen-xxl; // Min width for extra extra large devices
|
|
20
|
+
|
|
21
|
+
// Max Breakpoints
|
|
22
|
+
@screen-xs-max: 575.98px; // Max width for extra small devices
|
|
23
|
+
@screen-sm-max: 767.98px; // Max width for small devices
|
|
24
|
+
@screen-md-max: 991.98px; // Max width for medium devices
|
|
25
|
+
@screen-lg-max: 1199.98px; // Max width for large devices
|
|
26
|
+
@screen-xl-max: 1399.98px; // Max width for extra large devices
|
|
27
|
+
|
|
28
|
+
@mq-min: 420px;
|
|
29
|
+
@mq-xs: 520px;
|
|
30
|
+
@mq-form: 650px;
|
|
31
|
+
@mq-sm: 768px;
|
|
32
|
+
@mq-md: 960px;
|
|
33
|
+
@mq-lg: 1300px;
|
|
34
|
+
@mq-all: 1520px;
|
|
35
|
+
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
// COLORS
|
|
2
|
+
|
|
3
|
+
// Green Shades
|
|
4
|
+
@green-1: #e8f5e9; // Light green
|
|
5
|
+
@green-2: #c8e6c9; // Green 2
|
|
6
|
+
@green-3: #a5d6a7; // Green 3
|
|
7
|
+
@green-4: #81c784; // Green 4
|
|
8
|
+
@green-5: #66bb6a; // Green 5
|
|
9
|
+
@green-6: #4caf50; // Bootstrap success color (Green 6)
|
|
10
|
+
@green-7: #43a047; // Green 7
|
|
11
|
+
@green-8: #388e3c; // Green 8
|
|
12
|
+
@green-9: #2e7d32; // Darker green
|
|
13
|
+
@green-10: #1b5e20; // Dark green
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// Grey ColorPicker Variables
|
|
17
|
+
@grey-2: #fafafa;
|
|
18
|
+
@grey-3: #f5f5f5;
|
|
19
|
+
@grey-4: #e8e8e8;
|
|
20
|
+
@grey-5: #d9d9d9;
|
|
21
|
+
@grey-6: #bfbfbf;
|
|
22
|
+
@grey-7: #8c8c8c;
|
|
23
|
+
@grey-8: #595959;
|
|
24
|
+
@grey-9: #262626;
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
// Additional Colors
|
|
28
|
+
@blue: #007bff; // Blue
|
|
29
|
+
@red: #dc3545; // Red
|
|
30
|
+
@yellow: #ffc107; // Yellow
|
|
31
|
+
@purple: #6f42c1; // Purple
|
|
32
|
+
@orange: #fd7e14; // Orange
|
|
33
|
+
@teal: #20c997; // Teal
|
|
34
|
+
@pink: #e83e8c; // Pink
|
|
35
|
+
|
|
36
|
+
// Blue Combinations
|
|
37
|
+
@blue: #007bff; // Blue
|
|
38
|
+
@blue-light: #66b2ff; // Light Blue
|
|
39
|
+
@blue-dark: #0056b3; // Dark Blue
|
|
40
|
+
@blue-contrast: #ffffff; // White (for text on blue)
|
|
41
|
+
|
|
42
|
+
// Red Combinations
|
|
43
|
+
@red: #dc3545; // Red
|
|
44
|
+
@red-light: #ff6f61; // Light Red
|
|
45
|
+
@red-dark: #b02a37; // Dark Red
|
|
46
|
+
@red-contrast: #ffffff; // White (for text on red)
|
|
47
|
+
|
|
48
|
+
// Yellow Combinations
|
|
49
|
+
@yellow: #ffc107; // Yellow
|
|
50
|
+
@yellow-light: #ffe57f; // Light Yellow
|
|
51
|
+
@yellow-dark: #c69500; // Dark Yellow
|
|
52
|
+
@yellow-contrast: #212529; // Dark Gray (for text on yellow)
|
|
53
|
+
|
|
54
|
+
// Purple Combinations
|
|
55
|
+
@purple: #6f42c1; // Purple
|
|
56
|
+
@purple-light: #a77bca; // Light Purple
|
|
57
|
+
@purple-dark: #5e35b1; // Dark Purple
|
|
58
|
+
@purple-contrast: #ffffff; // White (for text on purple)
|
|
59
|
+
|
|
60
|
+
// Orange Combinations
|
|
61
|
+
@orange: #fd7e14; // Orange
|
|
62
|
+
@orange-light: #ffb74d; // Light Orange
|
|
63
|
+
@orange-dark: #e65100; // Dark Orange
|
|
64
|
+
@orange-contrast: #ffffff; // White (for text on orange)
|
|
65
|
+
|
|
66
|
+
// Teal Combinations
|
|
67
|
+
@teal: #20c997; // Teal
|
|
68
|
+
@teal-light: #80e0d8; // Light Teal
|
|
69
|
+
@teal-dark: #00897b; // Dark Teal
|
|
70
|
+
@teal-contrast: #ffffff; // White (for text on teal)
|
|
71
|
+
|
|
72
|
+
// Pink Combinations
|
|
73
|
+
@pink: #e83e8c; // Pink
|
|
74
|
+
@pink-light: #f48fb1; // Light Pink
|
|
75
|
+
@pink-dark: #c2185b; // Dark Pink
|
|
76
|
+
@pink-contrast: #ffffff; // White (for text on pink)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
// Blue Shades
|
|
80
|
+
@blue-1: #e3f2fd; // Light Blue
|
|
81
|
+
@blue-2: #bbdefb; // Blue 2
|
|
82
|
+
@blue-3: #90caf9; // Blue 3
|
|
83
|
+
@blue-4: #64b5f6; // Blue 4
|
|
84
|
+
@blue-5: #42a5f5; // Blue 5
|
|
85
|
+
@blue-6: #2196f3; // Blue 6 (Base)
|
|
86
|
+
@blue-7: #1e88e5; // Blue 7
|
|
87
|
+
@blue-8: #1976d2; // Blue 8
|
|
88
|
+
@blue-9: #1565c0; // Dark Blue
|
|
89
|
+
|
|
90
|
+
// Red Shades
|
|
91
|
+
@red-1: #ffebee; // Light Red
|
|
92
|
+
@red-2: #ffcdd2; // Red 2
|
|
93
|
+
@red-3: #ef9a9a; // Red 3
|
|
94
|
+
@red-4: #e57373; // Red 4
|
|
95
|
+
@red-5: #ef5350; // Red 5
|
|
96
|
+
@red-6: #f44336; // Red 6 (Base)
|
|
97
|
+
@red-7: #e53935; // Red 7
|
|
98
|
+
@red-8: #d32f2f; // Red 8
|
|
99
|
+
@red-9: #c62828; // Dark Red
|
|
100
|
+
|
|
101
|
+
// Yellow Shades
|
|
102
|
+
@yellow-1: #fffde7; // Light Yellow
|
|
103
|
+
@yellow-2: #fff9c4; // Yellow 2
|
|
104
|
+
@yellow-3: #fff59d; // Yellow 3
|
|
105
|
+
@yellow-4: #fff176; // Yellow 4
|
|
106
|
+
@yellow-5: #ffee58; // Yellow 5
|
|
107
|
+
@yellow-6: #ffc107; // Yellow 6 (Base)
|
|
108
|
+
@yellow-7: #ffb300; // Yellow 7
|
|
109
|
+
@yellow-8: #ffa000; // Yellow 8
|
|
110
|
+
@yellow-9: #ff8f00; // Dark Yellow
|
|
111
|
+
|
|
112
|
+
// Purple Shades
|
|
113
|
+
@purple-1: #f3e5f5; // Light Purple
|
|
114
|
+
@purple-2: #e1bee7; // Purple 2
|
|
115
|
+
@purple-3: #ce93d8; // Purple 3
|
|
116
|
+
@purple-4: #ba68c8; // Purple 4
|
|
117
|
+
@purple-5: #ab47bc; // Purple 5
|
|
118
|
+
@purple-6: #9c27b0; // Purple 6 (Base)
|
|
119
|
+
@purple-7: #8e24aa; // Purple 7
|
|
120
|
+
@purple-8: #7b1fa2; // Purple 8
|
|
121
|
+
@purple-9: #6a1b9a; // Dark Purple
|
|
122
|
+
|
|
123
|
+
// Orange Shades
|
|
124
|
+
@orange-1: #fff3e0; // Light Orange
|
|
125
|
+
@orange-2: #ffe0b2; // Orange 2
|
|
126
|
+
@orange-3: #ffcc80; // Orange 3
|
|
127
|
+
@orange-4: #ffb74d; // Orange 4
|
|
128
|
+
@orange-5: #ffa726; // Orange 5
|
|
129
|
+
@orange-6: #ff9800; // Orange 6 (Base)
|
|
130
|
+
@orange-7: #fb8c00; // Orange 7
|
|
131
|
+
@orange-8: #f57c00; // Orange 8
|
|
132
|
+
@orange-9: #ef6c00; // Dark Orange
|
|
133
|
+
|
|
134
|
+
// Teal Shades
|
|
135
|
+
@teal-1: #e0f2f1; // Light Teal
|
|
136
|
+
@teal-2: #b2dfdb; // Teal 2
|
|
137
|
+
@teal-3: #80cbc4; // Teal 3
|
|
138
|
+
@teal-4: #4db6ac; // Teal 4
|
|
139
|
+
@teal-5: #26a69a; // Teal 5
|
|
140
|
+
@teal-6: #009688; // Teal 6 (Base)
|
|
141
|
+
@teal-7: #00897b; // Teal 7
|
|
142
|
+
@teal-8: #00796b; // Teal 8
|
|
143
|
+
@teal-9: #00695c; // Dark Teal
|
|
144
|
+
|
|
145
|
+
// Pink Shades
|
|
146
|
+
@pink-1: #fce4ec; // Light Pink
|
|
147
|
+
@pink-2: #f8bbd0; // Pink 2
|
|
148
|
+
@pink-3: #f48fb1; // Pink 3
|
|
149
|
+
@pink-4: #f06292; // Pink 4
|
|
150
|
+
@pink-5: #ec407a; // Pink 5
|
|
151
|
+
@pink-6: #e91e63; // Pink 6 (Base)
|
|
152
|
+
@pink-7: #d81b60; // Pink 7
|
|
153
|
+
@pink-8: #c2185b; // Pink 8
|
|
154
|
+
@pink-9: #ad1457; // Dark Pink
|
|
155
|
+
|
|
156
|
+
// Grayscale Colors
|
|
157
|
+
@gray-1: #f8f9fa; // Light gray
|
|
158
|
+
@gray-2: #e9ecef; // Gray 2
|
|
159
|
+
@gray-3: #dee2e6; // Gray 3
|
|
160
|
+
@gray-4: #ced4da; // Gray 4
|
|
161
|
+
@gray-5: #adb5bd; // Gray 5
|
|
162
|
+
@gray-6: #6c757d; // Gray 6
|
|
163
|
+
@gray-7: #495057; // Dark gray
|
|
164
|
+
@gray-8: #343a40; // Darker gray
|
|
165
|
+
@gray-9: #212529; // Darkest gray
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
@link-color: #171d3d;
|
|
170
|
+
@dash-light-grey: #757575;
|
|
171
|
+
@dash-blue: #4D4D4D;
|
|
172
|
+
@dash-white-100: #FFFFFF;
|
|
173
|
+
@main-bg: rgba(63, 63, 63, 0.5);
|
|
174
|
+
@component-border: #cccccc;
|
|
175
|
+
@dash-purple: #808080;
|
|
176
|
+
@dash-purple-bg: #F2F2F2;
|
|
177
|
+
@dash-light-blue: #999999;
|
|
178
|
+
@dash-light-blue-bg: #E6E6E6;
|
|
179
|
+
@dash-green: #666666;
|
|
180
|
+
@dash-green-bg: #D9D9D9;
|
|
181
|
+
@dash-disabled-color: #EEEEEE;
|
|
182
|
+
@dash-red: #808080;
|
|
183
|
+
@dash-yellow: #999999;
|
|
184
|
+
@dash-yellow-bg: #E6E6E6;
|
|
185
|
+
@dash-orange: #666666;
|
|
186
|
+
@dash-orange-bg: #D9D9D9;
|
|
187
|
+
@dash-error: #808080;
|
|
188
|
+
@alert: #808080;
|
|
189
|
+
@dash-null: #808080;
|
|
190
|
+
@dash-null-bg: #EFEFF1;
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
// Colors - Status
|
|
195
|
+
@info-color: #1890ff;
|
|
196
|
+
@success-color: #52c41a;
|
|
197
|
+
@processing-color: #1890ff;
|
|
198
|
+
@error-color: #f5222d;
|
|
199
|
+
//@highlight-color: #49a000;
|
|
200
|
+
@warning-color: #faad14;
|
|
201
|
+
@normal-color: #d9d9d9;
|
|
202
|
+
@danger-color: #ff4d4f;
|
|
203
|
+
@light-color: #e8e8e8;
|
|
204
|
+
|
|
205
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
@import './colors.less';
|
|
2
|
+
|
|
3
|
+
/* This are default base colors for dash */
|
|
4
|
+
/* Overwrite this variables in the domain dash-variables.less */
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
// Colors - Status
|
|
8
|
+
@info-color: #1890ff;
|
|
9
|
+
@success-color: #52c41a;
|
|
10
|
+
@processing-color: #1890ff;
|
|
11
|
+
@error-color: #f5222d;
|
|
12
|
+
@highlight-color: #f5222d;
|
|
13
|
+
@warning-color: #faad14;
|
|
14
|
+
@normal-color: #d9d9d9;
|
|
15
|
+
@danger-color: #ff4d4f;
|
|
16
|
+
@light-color: #e8e8e8;
|
|
17
|
+
|
|
18
|
+
// Colors - Basic
|
|
19
|
+
@highlight-color: #FFFFFF;
|
|
20
|
+
@highlight-color: #ffffff;
|
|
21
|
+
@black: #000000;
|
|
22
|
+
@pink: #E6E6E6;
|
|
23
|
+
|
|
24
|
+
// Colors - Brand
|
|
25
|
+
@dash-blue: #4D4D4D;
|
|
26
|
+
@dash-purple: #808080;
|
|
27
|
+
@dash-light-blue: #999999;
|
|
28
|
+
@dash-green: #666666;
|
|
29
|
+
@dash-red: #808080;
|
|
30
|
+
@dash-yellow: #999999;
|
|
31
|
+
@dash-orange: #666666;
|
|
32
|
+
@dash-error: #808080;
|
|
33
|
+
@alert: #808080;
|
|
34
|
+
@dash-null: #808080;
|
|
35
|
+
@dash-light-grey: #757575;
|
|
36
|
+
|
|
37
|
+
// Colors - Background Variants
|
|
38
|
+
@dash-purple-bg: #F2F2F2;
|
|
39
|
+
@dash-light-blue-bg: #E6E6E6;
|
|
40
|
+
@dash-green-bg: #D9D9D9;
|
|
41
|
+
@dash-yellow-bg: #E6E6E6;
|
|
42
|
+
@dash-orange-bg: #D9D9D9;
|
|
43
|
+
@dash-null-bg: #EFEFF1;
|
|
44
|
+
|
|
45
|
+
@dash-scroll-width: 6px;
|
|
46
|
+
|
|
47
|
+
@table-header-color: #999;
|
|
48
|
+
@table-header-bg: #CCC;
|
|
49
|
+
@table-header-color--light: #ffffff;
|
|
50
|
+
@table-header-bg--light: #69de00;
|
|
51
|
+
@table-header-color--dark: #49a000;
|
|
52
|
+
@table-header-bg--dark: #3aaa00;
|