@clayui/css 3.44.0 → 3.46.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.
- package/README.md +23 -69
- package/lib/css/atlas.css +316 -14
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +306 -14
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +82 -26
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/add-cell.svg +1 -1
- package/lib/images/icons/corner-radius.svg +12 -0
- package/lib/images/icons/export.svg +11 -0
- package/lib/images/icons/font-family.svg +10 -0
- package/lib/images/icons/font-size.svg +10 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/shadow.svg +9 -0
- package/package.json +2 -2
- package/src/images/icons/add-cell.svg +1 -1
- package/src/images/icons/corner-radius.svg +12 -0
- package/src/images/icons/export.svg +11 -0
- package/src/images/icons/font-family.svg +10 -0
- package/src/images/icons/font-size.svg +10 -0
- package/src/images/icons/shadow.svg +9 -0
- package/src/scss/_components.scss +1 -0
- package/src/scss/_variables.scss +2 -0
- package/src/scss/atlas/variables/_buttons.scss +3 -0
- package/src/scss/atlas/variables/_forms.scss +2 -1
- package/src/scss/atlas/variables/_globals.scss +42 -13
- package/src/scss/cadmin/_variables.scss +1 -0
- package/src/scss/cadmin/components/_aspect-ratio.scss +25 -38
- package/src/scss/cadmin/components/_custom-forms.scss +4 -0
- package/src/scss/cadmin/components/_forms.scss +1 -1
- package/src/scss/cadmin/components/_links.scss +1 -6
- package/src/scss/cadmin/components/_navs.scss +8 -0
- package/src/scss/cadmin/components/_treeview.scss +135 -211
- package/src/scss/cadmin/components/_type.scss +27 -42
- package/src/scss/cadmin/components/_utilities-functional-important.scss +35 -15
- package/src/scss/cadmin/variables/_aspect-ratio.scss +26 -0
- package/src/scss/cadmin/variables/_custom-forms.scss +3 -0
- package/src/scss/cadmin/variables/_forms.scss +3 -2
- package/src/scss/cadmin/variables/_globals.scss +173 -11
- package/src/scss/cadmin/variables/_navs.scss +1 -0
- package/src/scss/cadmin/variables/_treeview.scss +21 -16
- package/src/scss/cadmin/variables/_utilities.scss +42 -0
- package/src/scss/components/_aspect-ratio.scss +25 -38
- package/src/scss/components/_forms.scss +1 -1
- package/src/scss/components/_links.scss +12 -0
- package/src/scss/components/_treeview.scss +310 -0
- package/src/scss/components/_type.scss +27 -41
- package/src/scss/components/_utilities-functional-important.scss +35 -15
- package/src/scss/functions/_lx-icons-generated.scss +10 -0
- package/src/scss/mixins/_buttons.scss +31 -64
- package/src/scss/mixins/_cards.scss +8 -0
- package/src/scss/mixins/_grid.scss +29 -0
- package/src/scss/variables/_aspect-ratio.scss +26 -0
- package/src/scss/variables/_buttons.scss +6 -0
- package/src/scss/variables/_forms.scss +3 -2
- package/src/scss/variables/_globals.scss +172 -11
- package/src/scss/variables/_links.scss +17 -0
- package/src/scss/variables/_treeview.scss +222 -0
- package/src/scss/variables/_utilities.scss +42 -0
package/README.md
CHANGED
|
@@ -1,89 +1,43 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
3
|
-
### Jump to Section
|
|
1
|
+
## Jump to Section
|
|
4
2
|
|
|
5
3
|
- [About](#about)
|
|
6
|
-
- [
|
|
7
|
-
- [Clone the repo](#clone-the-repo)
|
|
8
|
-
- [Install Node.js and NPM](#install-nodejs-and-npm)
|
|
9
|
-
- [Install the NPM modules](#install-the-npm-modules)
|
|
10
|
-
- [Modify files in src/](#modify-files-in-src)
|
|
11
|
-
- [Build the static files](#build-the-static-files)
|
|
12
|
-
- [View the files](#view-the-files)
|
|
13
|
-
- [File Heading Options](#file-heading-options)
|
|
14
|
-
- [Available Build Tasks](#available-build-tasks)
|
|
15
|
-
|
|
16
|
-
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
4
|
+
- [Adding New SVG Icons](#adding-new-svg-icons)
|
|
17
5
|
|
|
18
6
|
## About
|
|
7
|
+
|
|
19
8
|
Clay is Liferay's web implementation of the Lexicon Design Language. It is built with HTML, CSS, and Javascript with [Bootstrap](https://getbootstrap.com/docs/4.1/getting-started/introduction/) as a foundation.
|
|
20
9
|
|
|
21
10
|
You can view the various components on [the Clay site](http://clayui.com).
|
|
22
11
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
## Building
|
|
26
|
-
If you would like to contribute, or make changes on your system you need to do the following:
|
|
27
|
-
|
|
28
|
-
### Clone the repo
|
|
29
|
-
Clone the repo to your computer
|
|
30
|
-
|
|
31
|
-
### Install Node.js (v4.6.0 LTS) and NPM
|
|
32
|
-
If you don't already have it installed. You can find more info here: http://nodejs.org/
|
|
33
|
-
Node and NPM come bundled together, so you only need to install one package.
|
|
34
|
-
|
|
35
|
-
### Install the NPM modules
|
|
36
|
-
Run `npm install` inside of the `packages/clay-css` directory
|
|
37
|
-
|
|
38
|
-
### Modify files in src/
|
|
39
|
-
The files are generated from the `src/` directory, however, most of the files you'd be interested in changing are in `src/content/`. Files can be either HTML (`.html`) or Markdown (`.md`).
|
|
40
|
-
Every file in `src/content/` has a heading at the top in YAML format that looks something like:
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
---
|
|
44
|
-
title: Title of the Page
|
|
45
|
-
---
|
|
46
|
-
|
|
47
|
-
This section has a couple of options that can be leveraged for different purposes. Those will be covered below.
|
|
48
|
-
|
|
49
|
-
### Build the static files
|
|
50
|
-
Run `gulp build` to generate the static files.
|
|
51
|
-
|
|
52
|
-
### View the files
|
|
53
|
-
The generated files are placed into the `build/` directory.
|
|
54
|
-
Sass files in the `.scss` format are generated to CSS, Markdown files with the extension of `.md` are generated to HTML, and HTML files have one bit of processing applied, which is that HTML inside of triple ticks is escaped, like so:
|
|
55
|
-
|
|
56
|
-
```
|
|
57
|
-
<div>Foo</div>
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
### File Heading Options
|
|
61
|
-
There are a couple of properties you can add to the headings of files, only one of which is required:
|
|
12
|
+
## Adding New SVG Icons
|
|
62
13
|
|
|
63
|
-
|
|
14
|
+
1) The copyright license should be added at the top of the new SVG icon file using the format:
|
|
64
15
|
|
|
65
|
-
|
|
66
|
-
|
|
16
|
+
```
|
|
17
|
+
<!--
|
|
18
|
+
* SPDX-FileCopyrightText: © 2022 Liferay, Inc. <https://liferay.com>
|
|
19
|
+
* SPDX-FileCopyrightText: © 2022 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
20
|
+
*
|
|
21
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
22
|
+
-->
|
|
23
|
+
```
|
|
67
24
|
|
|
68
|
-
|
|
25
|
+
See https://liferay.dev/blogs/-/blogs/how-and-why-to-properly-write-copyright-statements-in-your-code#tldr for more details.
|
|
69
26
|
|
|
70
|
-
|
|
71
|
-
You can pass these options when running `gulp`.
|
|
27
|
+
2) The `<svg></svg>` element should only have the attributes `xmlns` and `viewBox`.
|
|
72
28
|
|
|
73
|
-
|
|
74
|
-
This will generate all of the HTML/CSS/etc into the `build/` directory.
|
|
29
|
+
3) Remove any `fill` and `id` attributes from the SVG elements.
|
|
75
30
|
|
|
76
|
-
|
|
31
|
+
4) Remove any `<style></style>` tags and the classes / ids that are referenced by it.
|
|
77
32
|
|
|
78
|
-
`
|
|
33
|
+
5) The class `lexicon-icon-body` is deprecated and is no longer being included in newer icons. This class allowed the background color of an icon to be modified using the property `fill`. We shouldn't use this class.
|
|
79
34
|
|
|
80
|
-
|
|
81
|
-
Bootstrap can be updated or downgraded by using the command:
|
|
35
|
+
6) The class `lexicon-icon-outline` is a marker on each SVG element (e.g., `path`, `circle`, `rect`). It provides another class to use as a selector to apply CSS changes to an icon. This class should be included on all SVG elements.
|
|
82
36
|
|
|
83
|
-
`
|
|
37
|
+
7) Run `yarn compile` and include the auto generated file `src/scss/functions/_lx-icons-generated.scss` in your commit.
|
|
84
38
|
|
|
85
|
-
|
|
39
|
+
8) In the file, `clay/clayui.com/plugins/gatsby-plugin-clay-css-tasks/clay-icon-aliases.js`, find `iconsData` and add the icon aliases if needed.
|
|
86
40
|
|
|
87
|
-
`
|
|
41
|
+
9) In the `clayui.com` directory run `yarn develop` and check to see if the icon shows up in the icon section.
|
|
88
42
|
|
|
89
|
-
|
|
43
|
+
10) Include the files `static/images/icons/icons.svg`, `static/js/icons-autogenerated.json`, and `static/js/flags-autogenerated.json` to the commit. Some of these files might not show up in git's "Changes not staged for commit:" if aliases or flags have not been added.
|
package/lib/css/atlas.css
CHANGED
|
@@ -325,26 +325,32 @@ h1,
|
|
|
325
325
|
.h1 {
|
|
326
326
|
font-size: 1.625rem;
|
|
327
327
|
}
|
|
328
|
+
|
|
328
329
|
h2,
|
|
329
330
|
.h2 {
|
|
330
331
|
font-size: 1.375rem;
|
|
331
332
|
}
|
|
333
|
+
|
|
332
334
|
h3,
|
|
333
335
|
.h3 {
|
|
334
336
|
font-size: 1.1875rem;
|
|
335
337
|
}
|
|
338
|
+
|
|
336
339
|
h4,
|
|
337
340
|
.h4 {
|
|
338
341
|
font-size: 1rem;
|
|
339
342
|
}
|
|
343
|
+
|
|
340
344
|
h5,
|
|
341
345
|
.h5 {
|
|
342
346
|
font-size: 0.875rem;
|
|
343
347
|
}
|
|
348
|
+
|
|
344
349
|
h6,
|
|
345
350
|
.h6 {
|
|
346
351
|
font-size: 0.8125rem;
|
|
347
352
|
}
|
|
353
|
+
|
|
348
354
|
.lead {
|
|
349
355
|
font-size: 1.25rem;
|
|
350
356
|
font-weight: 300;
|
|
@@ -1140,6 +1146,10 @@ button.collapse-icon .c-inner {
|
|
|
1140
1146
|
padding-bottom: calc(3 / 4 * 100%);
|
|
1141
1147
|
}
|
|
1142
1148
|
|
|
1149
|
+
.aspect-ratio-8-to-3 {
|
|
1150
|
+
padding-bottom: calc(3 / 8 * 100%);
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1143
1153
|
.aspect-ratio-8-to-5 {
|
|
1144
1154
|
padding-bottom: calc(5 / 8 * 100%);
|
|
1145
1155
|
}
|
|
@@ -1235,6 +1245,9 @@ button.collapse-icon .c-inner {
|
|
|
1235
1245
|
.btn .inline-item {
|
|
1236
1246
|
font-size: 1rem;
|
|
1237
1247
|
}
|
|
1248
|
+
.btn .inline-item .lexicon-icon {
|
|
1249
|
+
margin-top: 0;
|
|
1250
|
+
}
|
|
1238
1251
|
.btn .btn-section {
|
|
1239
1252
|
display: block;
|
|
1240
1253
|
font-size: 0.6875rem;
|
|
@@ -1294,6 +1307,10 @@ fieldset:disabled a.btn:active {
|
|
|
1294
1307
|
margin-right: -0.75rem;
|
|
1295
1308
|
margin-top: -0.4375rem;
|
|
1296
1309
|
}
|
|
1310
|
+
.form-group-sm .btn .lexicon-icon, .btn-group-sm > .btn .lexicon-icon,
|
|
1311
|
+
.btn-group-sm .btn-group > .btn .lexicon-icon, .btn-sm .lexicon-icon {
|
|
1312
|
+
font-size: 1rem;
|
|
1313
|
+
}
|
|
1297
1314
|
.form-group-sm .btn .btn-section, .btn-group-sm > .btn .btn-section,
|
|
1298
1315
|
.btn-group-sm .btn-group > .btn .btn-section, .btn-sm .btn-section {
|
|
1299
1316
|
font-size: 0.5625rem;
|
|
@@ -1360,6 +1377,9 @@ input[type=button].btn-block {
|
|
|
1360
1377
|
padding: 0;
|
|
1361
1378
|
width: 100%;
|
|
1362
1379
|
}
|
|
1380
|
+
.btn-monospaced .lexicon-icon {
|
|
1381
|
+
margin-top: 0;
|
|
1382
|
+
}
|
|
1363
1383
|
.btn-group-vertical > .btn-monospaced.btn-lg, .btn-group-lg .btn-monospaced, .btn-monospaced.btn-lg {
|
|
1364
1384
|
height: 3rem;
|
|
1365
1385
|
width: 3rem;
|
|
@@ -6677,6 +6697,9 @@ input[type=button].btn-block {
|
|
|
6677
6697
|
.dropdown-action > .dropdown-toggle .lexicon-icon {
|
|
6678
6698
|
margin-top: 0;
|
|
6679
6699
|
}
|
|
6700
|
+
.dropdown-action > .dropdown-toggle .inline-item .lexicon-icon {
|
|
6701
|
+
margin-top: 0;
|
|
6702
|
+
}
|
|
6680
6703
|
.dropdown-menu-indicator-start .dropdown-item-indicator {
|
|
6681
6704
|
height: 1rem;
|
|
6682
6705
|
left: 1.25rem;
|
|
@@ -7275,10 +7298,11 @@ fieldset[disabled] label .form-control {
|
|
|
7275
7298
|
}
|
|
7276
7299
|
.form-control .label {
|
|
7277
7300
|
border-width: 0.0625rem;
|
|
7278
|
-
height:
|
|
7301
|
+
height: auto;
|
|
7279
7302
|
margin-bottom: 0.3125rem;
|
|
7280
7303
|
margin-right: 0.625rem;
|
|
7281
7304
|
margin-top: 0.3125rem;
|
|
7305
|
+
min-height: 1.5rem;
|
|
7282
7306
|
font-size: 0.75rem;
|
|
7283
7307
|
text-transform: none;
|
|
7284
7308
|
}
|
|
@@ -8239,6 +8263,17 @@ button.link-outline {
|
|
|
8239
8263
|
margin-top: 0;
|
|
8240
8264
|
}
|
|
8241
8265
|
|
|
8266
|
+
.component-icon {
|
|
8267
|
+
align-items: center;
|
|
8268
|
+
display: inline-flex;
|
|
8269
|
+
height: 32px;
|
|
8270
|
+
justify-content: center;
|
|
8271
|
+
width: 32px;
|
|
8272
|
+
}
|
|
8273
|
+
.component-icon .lexicon-icon {
|
|
8274
|
+
margin-top: 0;
|
|
8275
|
+
}
|
|
8276
|
+
|
|
8242
8277
|
.clay-range {
|
|
8243
8278
|
padding-bottom: 0.1px;
|
|
8244
8279
|
}
|
|
@@ -20662,6 +20697,221 @@ caption {
|
|
|
20662
20697
|
margin-left: 0;
|
|
20663
20698
|
right: 0.5rem;
|
|
20664
20699
|
}
|
|
20700
|
+
.treeview {
|
|
20701
|
+
display: flex;
|
|
20702
|
+
flex-direction: column;
|
|
20703
|
+
font-size: 14px;
|
|
20704
|
+
list-style: none;
|
|
20705
|
+
margin-bottom: 0;
|
|
20706
|
+
padding: 2px 0;
|
|
20707
|
+
}
|
|
20708
|
+
.treeview .btn-monospaced {
|
|
20709
|
+
font-size: 14px;
|
|
20710
|
+
height: 24px;
|
|
20711
|
+
width: 24px;
|
|
20712
|
+
}
|
|
20713
|
+
.treeview .btn-monospaced:focus, .treeview .btn-monospaced.focus {
|
|
20714
|
+
box-shadow: inset 0 0 0 0.125rem #80acff , inset 0 0 0 0.25rem #fff;
|
|
20715
|
+
}
|
|
20716
|
+
.treeview .btn-monospaced:active:focus {
|
|
20717
|
+
box-shadow: inset 0 0 0 0.125rem #80acff , inset 0 0 0 0.25rem #fff;
|
|
20718
|
+
}
|
|
20719
|
+
.treeview .custom-control {
|
|
20720
|
+
margin-left: 4px;
|
|
20721
|
+
margin-right: 4px;
|
|
20722
|
+
margin-top: 1.5px;
|
|
20723
|
+
}
|
|
20724
|
+
.treeview .component-expander .lexicon-icon:not(.component-expanded-d-none) {
|
|
20725
|
+
display: none;
|
|
20726
|
+
}
|
|
20727
|
+
.treeview .component-action {
|
|
20728
|
+
display: none;
|
|
20729
|
+
margin-left: 2px;
|
|
20730
|
+
margin-right: 2px;
|
|
20731
|
+
}
|
|
20732
|
+
.treeview .component-action:hover {
|
|
20733
|
+
background-color: transparent;
|
|
20734
|
+
color: #6b6c7e;
|
|
20735
|
+
}
|
|
20736
|
+
.treeview .component-action:focus, .treeview .component-action.focus {
|
|
20737
|
+
color: #6b6c7e;
|
|
20738
|
+
}
|
|
20739
|
+
.treeview .component-action:active {
|
|
20740
|
+
background-color: transparent;
|
|
20741
|
+
}
|
|
20742
|
+
.treeview .component-action.active {
|
|
20743
|
+
background-color: transparent;
|
|
20744
|
+
}
|
|
20745
|
+
.treeview .component-action[aria-expanded=true], .treeview .component-action.show {
|
|
20746
|
+
background-color: transparent;
|
|
20747
|
+
}
|
|
20748
|
+
.treeview .component-icon {
|
|
20749
|
+
display: inline;
|
|
20750
|
+
height: auto;
|
|
20751
|
+
margin-left: 4px;
|
|
20752
|
+
margin-right: 4px;
|
|
20753
|
+
width: auto;
|
|
20754
|
+
}
|
|
20755
|
+
.treeview .component-text {
|
|
20756
|
+
padding-bottom: 1.5px;
|
|
20757
|
+
padding-left: 4px;
|
|
20758
|
+
padding-top: 1.5px;
|
|
20759
|
+
-ms-user-select: auto;
|
|
20760
|
+
-moz-user-select: auto;
|
|
20761
|
+
-webkit-user-select: auto;
|
|
20762
|
+
user-select: auto;
|
|
20763
|
+
}
|
|
20764
|
+
.treeview.show-component-expander-on-hover:hover .component-expander, .treeview.show-component-expander-on-hover.hover .component-expander {
|
|
20765
|
+
opacity: 1;
|
|
20766
|
+
transition: opacity ease-in-out 600ms;
|
|
20767
|
+
}
|
|
20768
|
+
@media (prefers-reduced-motion: reduce) {
|
|
20769
|
+
.treeview.show-component-expander-on-hover:hover .component-expander, .treeview.show-component-expander-on-hover.hover .component-expander {
|
|
20770
|
+
transition: none;
|
|
20771
|
+
}
|
|
20772
|
+
}
|
|
20773
|
+
.treeview.show-component-expander-on-hover .treeview-link:focus .component-expander, .treeview.show-component-expander-on-hover .treeview-link.focus .component-expander {
|
|
20774
|
+
opacity: 1;
|
|
20775
|
+
transition: none;
|
|
20776
|
+
}
|
|
20777
|
+
.treeview.show-component-expander-on-hover .component-expander {
|
|
20778
|
+
opacity: 0;
|
|
20779
|
+
transition: opacity ease-in-out 450ms;
|
|
20780
|
+
}
|
|
20781
|
+
@media (prefers-reduced-motion: reduce) {
|
|
20782
|
+
.treeview.show-component-expander-on-hover .component-expander {
|
|
20783
|
+
transition: none;
|
|
20784
|
+
}
|
|
20785
|
+
}
|
|
20786
|
+
|
|
20787
|
+
.treeview-group {
|
|
20788
|
+
display: flex;
|
|
20789
|
+
flex-direction: column;
|
|
20790
|
+
list-style: none;
|
|
20791
|
+
margin-bottom: 0;
|
|
20792
|
+
padding-left: 0;
|
|
20793
|
+
}
|
|
20794
|
+
|
|
20795
|
+
.treeview-item {
|
|
20796
|
+
overflow-wrap: break-word;
|
|
20797
|
+
word-wrap: break-word;
|
|
20798
|
+
}
|
|
20799
|
+
.treeview-link {
|
|
20800
|
+
cursor: pointer;
|
|
20801
|
+
display: block;
|
|
20802
|
+
border-color: transparent;
|
|
20803
|
+
border-style: solid;
|
|
20804
|
+
border-width: 1px;
|
|
20805
|
+
margin-bottom: 2px;
|
|
20806
|
+
margin-top: 2px;
|
|
20807
|
+
min-width: 100%;
|
|
20808
|
+
padding: 0;
|
|
20809
|
+
position: relative;
|
|
20810
|
+
-ms-user-select: none;
|
|
20811
|
+
-moz-user-select: none;
|
|
20812
|
+
-webkit-user-select: none;
|
|
20813
|
+
user-select: none;
|
|
20814
|
+
}
|
|
20815
|
+
.treeview-link:hover {
|
|
20816
|
+
text-decoration: none;
|
|
20817
|
+
}
|
|
20818
|
+
.treeview-link:focus {
|
|
20819
|
+
box-shadow: inset 0 0 0 0.125rem #80acff , inset 0 0 0 0.25rem #fff;
|
|
20820
|
+
outline: 0;
|
|
20821
|
+
}
|
|
20822
|
+
.treeview-link.treeview-dropping-bottom {
|
|
20823
|
+
box-shadow: 0 2px 0 0 #80acff;
|
|
20824
|
+
}
|
|
20825
|
+
.treeview-link.treeview-dropping-middle {
|
|
20826
|
+
background-color: #f0f5ff;
|
|
20827
|
+
border-color: #80acff;
|
|
20828
|
+
}
|
|
20829
|
+
.treeview-link.treeview-dropping-top {
|
|
20830
|
+
box-shadow: 0 -2px 0 0 #80acff;
|
|
20831
|
+
}
|
|
20832
|
+
.treeview-link.hover .component-action, .treeview-link:hover .component-action, .treeview-link.focus .component-action, .treeview-link:focus .component-action {
|
|
20833
|
+
display: block;
|
|
20834
|
+
}
|
|
20835
|
+
.treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
|
|
20836
|
+
display: none;
|
|
20837
|
+
}
|
|
20838
|
+
.treeview-link.show .component-expander .lexicon-icon:not(.component-expanded-d-none), .treeview-link[aria-expanded=true] .component-expander .lexicon-icon:not(.component-expanded-d-none) {
|
|
20839
|
+
display: inline-block;
|
|
20840
|
+
}
|
|
20841
|
+
|
|
20842
|
+
.treeview-nested-margins .treeview-group .treeview-item {
|
|
20843
|
+
margin-left: 24px;
|
|
20844
|
+
}
|
|
20845
|
+
|
|
20846
|
+
.treeview-item-dragging {
|
|
20847
|
+
cursor: not-allowed;
|
|
20848
|
+
opacity: 0.4;
|
|
20849
|
+
}
|
|
20850
|
+
.treeview-item-dragging .treeview-link {
|
|
20851
|
+
background-color: transparent;
|
|
20852
|
+
border-color: transparent;
|
|
20853
|
+
box-shadow: none;
|
|
20854
|
+
}
|
|
20855
|
+
.treeview-dragging {
|
|
20856
|
+
background-color: #fff;
|
|
20857
|
+
border-color: #80acff;
|
|
20858
|
+
border-radius: 0.1875rem;
|
|
20859
|
+
border-style: solid;
|
|
20860
|
+
border-width: 1px;
|
|
20861
|
+
display: inline-block;
|
|
20862
|
+
font-size: 10px;
|
|
20863
|
+
font-weight: 600;
|
|
20864
|
+
padding: 4px 12px;
|
|
20865
|
+
text-transform: uppercase;
|
|
20866
|
+
}
|
|
20867
|
+
|
|
20868
|
+
.treeview-light .component-expander {
|
|
20869
|
+
color: #6b6c7e;
|
|
20870
|
+
}
|
|
20871
|
+
.treeview-light .component-expander:hover {
|
|
20872
|
+
color: #0b5fff;
|
|
20873
|
+
}
|
|
20874
|
+
.treeview-light .component-expander.btn-secondary {
|
|
20875
|
+
background-color: #fff;
|
|
20876
|
+
}
|
|
20877
|
+
.treeview-light .treeview-link {
|
|
20878
|
+
color: #6b6c7e;
|
|
20879
|
+
}
|
|
20880
|
+
.treeview-light .treeview-link:hover {
|
|
20881
|
+
background-color: #f7f8f9;
|
|
20882
|
+
color: #272833;
|
|
20883
|
+
}
|
|
20884
|
+
.treeview-light .treeview-link:active {
|
|
20885
|
+
background-color: #f1f2f5;
|
|
20886
|
+
color: #272833;
|
|
20887
|
+
}
|
|
20888
|
+
.treeview-light .treeview-link.active {
|
|
20889
|
+
background-color: #f1f2f5;
|
|
20890
|
+
color: #272833;
|
|
20891
|
+
}
|
|
20892
|
+
.treeview-dark .component-expander {
|
|
20893
|
+
color: #a7a9bc;
|
|
20894
|
+
}
|
|
20895
|
+
.treeview-dark .component-expander:hover {
|
|
20896
|
+
color: #80acff;
|
|
20897
|
+
}
|
|
20898
|
+
.treeview-dark .treeview-link {
|
|
20899
|
+
color: #a7a9bc;
|
|
20900
|
+
}
|
|
20901
|
+
.treeview-dark .treeview-link:hover {
|
|
20902
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
20903
|
+
}
|
|
20904
|
+
.treeview-dark .treeview-link.active {
|
|
20905
|
+
background-color: rgba(255, 255, 255, 0.06);
|
|
20906
|
+
color: #fff;
|
|
20907
|
+
}
|
|
20908
|
+
.treeview-dark .treeview-link:disabled, .treeview-dark .treeview-link.disabled {
|
|
20909
|
+
background-color: transparent;
|
|
20910
|
+
color: rgba(167, 169, 188, 0.04);
|
|
20911
|
+
}
|
|
20912
|
+
.treeview-dark .component-action {
|
|
20913
|
+
color: #a7a9bc;
|
|
20914
|
+
}
|
|
20665
20915
|
.bg-checkered {
|
|
20666
20916
|
background-image: linear-gradient(45deg, #e7e7ed 25%, transparent 25%), linear-gradient(-45deg, #e7e7ed 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e7e7ed 75%), linear-gradient(-45deg, transparent 75%, #e7e7ed 75%);
|
|
20667
20917
|
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
|
|
@@ -29191,10 +29441,6 @@ button.bg-dark:focus {
|
|
|
29191
29441
|
z-index: 1;
|
|
29192
29442
|
}
|
|
29193
29443
|
|
|
29194
|
-
.text-monospace {
|
|
29195
|
-
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
|
|
29196
|
-
}
|
|
29197
|
-
|
|
29198
29444
|
.text-justify {
|
|
29199
29445
|
text-align: justify !important;
|
|
29200
29446
|
}
|
|
@@ -29289,34 +29535,90 @@ button.bg-dark:focus {
|
|
|
29289
29535
|
text-transform: capitalize !important;
|
|
29290
29536
|
}
|
|
29291
29537
|
|
|
29292
|
-
.font-weight-
|
|
29293
|
-
|
|
29538
|
+
.font-weight-lighter,
|
|
29539
|
+
.text-weight-lighter {
|
|
29540
|
+
font-weight: lighter !important;
|
|
29294
29541
|
}
|
|
29295
29542
|
|
|
29296
|
-
.font-weight-
|
|
29297
|
-
|
|
29543
|
+
.font-weight-light,
|
|
29544
|
+
.text-weight-light {
|
|
29545
|
+
font-weight: 300 !important;
|
|
29298
29546
|
}
|
|
29299
29547
|
|
|
29300
|
-
.font-weight-normal
|
|
29548
|
+
.font-weight-normal,
|
|
29549
|
+
.text-weight-normal {
|
|
29301
29550
|
font-weight: 400 !important;
|
|
29302
29551
|
}
|
|
29303
29552
|
|
|
29304
|
-
.font-weight-semi-bold
|
|
29553
|
+
.font-weight-semi-bold,
|
|
29554
|
+
.text-weight-semi-bold {
|
|
29305
29555
|
font-weight: 600 !important;
|
|
29306
29556
|
}
|
|
29307
29557
|
|
|
29308
|
-
.font-weight-bold
|
|
29558
|
+
.font-weight-bold,
|
|
29559
|
+
.text-weight-bold {
|
|
29309
29560
|
font-weight: 700 !important;
|
|
29310
29561
|
}
|
|
29311
29562
|
|
|
29312
|
-
.font-weight-bolder
|
|
29563
|
+
.font-weight-bolder,
|
|
29564
|
+
.text-weight-bolder {
|
|
29313
29565
|
font-weight: 900 !important;
|
|
29314
29566
|
}
|
|
29315
29567
|
|
|
29316
|
-
.font-italic
|
|
29568
|
+
.font-italic,
|
|
29569
|
+
.text-italic {
|
|
29317
29570
|
font-style: italic !important;
|
|
29318
29571
|
}
|
|
29319
29572
|
|
|
29573
|
+
.font-monospace,
|
|
29574
|
+
.text-monospace {
|
|
29575
|
+
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
|
|
29576
|
+
}
|
|
29577
|
+
|
|
29578
|
+
.text-1 {
|
|
29579
|
+
font-size: 0.625rem;
|
|
29580
|
+
}
|
|
29581
|
+
|
|
29582
|
+
.text-2 {
|
|
29583
|
+
font-size: 0.75rem;
|
|
29584
|
+
}
|
|
29585
|
+
|
|
29586
|
+
.text-3 {
|
|
29587
|
+
font-size: 0.875rem;
|
|
29588
|
+
}
|
|
29589
|
+
|
|
29590
|
+
.text-4 {
|
|
29591
|
+
font-size: 1rem;
|
|
29592
|
+
}
|
|
29593
|
+
|
|
29594
|
+
.text-5 {
|
|
29595
|
+
font-size: 1.125rem;
|
|
29596
|
+
}
|
|
29597
|
+
|
|
29598
|
+
.text-6 {
|
|
29599
|
+
font-size: 1.25rem;
|
|
29600
|
+
}
|
|
29601
|
+
|
|
29602
|
+
.text-7 {
|
|
29603
|
+
font-size: 1.5rem;
|
|
29604
|
+
}
|
|
29605
|
+
|
|
29606
|
+
.text-8 {
|
|
29607
|
+
font-size: 1.75rem;
|
|
29608
|
+
}
|
|
29609
|
+
|
|
29610
|
+
.text-9 {
|
|
29611
|
+
font-size: 2rem;
|
|
29612
|
+
}
|
|
29613
|
+
|
|
29614
|
+
.text-10 {
|
|
29615
|
+
font-size: 2.25rem;
|
|
29616
|
+
}
|
|
29617
|
+
|
|
29618
|
+
.text-11 {
|
|
29619
|
+
font-size: 2.5rem;
|
|
29620
|
+
}
|
|
29621
|
+
|
|
29320
29622
|
.text-white {
|
|
29321
29623
|
color: #fff !important;
|
|
29322
29624
|
}
|