ply-css 1.7.0 → 1.7.1
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/PLY.md +1 -1
- package/README.md +1 -1
- package/dist/css/ply.css +0 -71
- package/dist/css/ply.min.css +1 -1
- package/dist/css/styles.css +0 -71
- package/dist/css/styles.min.css +1 -1
- package/llms-full.txt +1 -1
- package/package.json +1 -1
- package/ply-classes.json +1 -13
- package/src/scss/_ply.scss +0 -2
- package/src/scss/components/_rtl.scss +0 -11
- package/src/scss/components/_dropdown.scss +0 -68
package/PLY.md
CHANGED
|
@@ -137,7 +137,7 @@ For quick demos or prototypes, drop in the CSS directly:
|
|
|
137
137
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ply-css@1/dist/css/ply.min.css">
|
|
138
138
|
```
|
|
139
139
|
|
|
140
|
-
Or the lean core bundle (no labels,
|
|
140
|
+
Or the lean core bundle (no labels, loaders, print styles):
|
|
141
141
|
|
|
142
142
|
```html
|
|
143
143
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ply-css@1/dist/css/ply-core.min.css">
|
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ CSS frameworks were designed for humans reading documentation. But increasingly,
|
|
|
71
71
|
|
|
72
72
|
| Bundle | File | Description |
|
|
73
73
|
|--------|------|-------------|
|
|
74
|
-
| Full | `ply.min.css` | Everything — grid, typography, forms, buttons, navigation, notifications, labels,
|
|
74
|
+
| Full | `ply.min.css` | Everything — grid, typography, forms, buttons, navigation, notifications, labels, loader, helpers |
|
|
75
75
|
| Core | `ply-core.min.css` | Grid, typography, forms, buttons, navigation, notifications, essential helpers |
|
|
76
76
|
| Essentials | `ply-essentials.min.css` | Grid + helpers only |
|
|
77
77
|
|
package/dist/css/ply.css
CHANGED
|
@@ -5909,69 +5909,6 @@ button.btn-white.btn-outline.btn-active {
|
|
|
5909
5909
|
color: #fff;
|
|
5910
5910
|
}
|
|
5911
5911
|
|
|
5912
|
-
/* =Dropdown
|
|
5913
|
-
-----------------------------------------------------------------------------*/
|
|
5914
|
-
.dropdown {
|
|
5915
|
-
display: none;
|
|
5916
|
-
position: absolute;
|
|
5917
|
-
z-index: 102;
|
|
5918
|
-
top: 0;
|
|
5919
|
-
right: 0;
|
|
5920
|
-
width: 250px;
|
|
5921
|
-
color: var(--ply-color-body, #0f0f0f);
|
|
5922
|
-
background: var(--ply-bg-surface, #fff);
|
|
5923
|
-
box-shadow: var(--ply-shadow-2, 0 1px 5px rgba(0, 0, 0, 0.3));
|
|
5924
|
-
overflow: auto;
|
|
5925
|
-
}
|
|
5926
|
-
.dropdown section {
|
|
5927
|
-
max-height: 250px;
|
|
5928
|
-
overflow: auto;
|
|
5929
|
-
padding: 20px;
|
|
5930
|
-
}
|
|
5931
|
-
.dropdown footer {
|
|
5932
|
-
padding: 20px;
|
|
5933
|
-
}
|
|
5934
|
-
|
|
5935
|
-
ul.dropdown {
|
|
5936
|
-
max-height: 300px;
|
|
5937
|
-
list-style: none;
|
|
5938
|
-
margin: 0;
|
|
5939
|
-
line-height: 1.5;
|
|
5940
|
-
font-size: 95%;
|
|
5941
|
-
padding: 0;
|
|
5942
|
-
}
|
|
5943
|
-
ul.dropdown a {
|
|
5944
|
-
display: block;
|
|
5945
|
-
padding: 7px 15px;
|
|
5946
|
-
text-decoration: none;
|
|
5947
|
-
color: var(--ply-color-body, #0f0f0f);
|
|
5948
|
-
}
|
|
5949
|
-
ul.dropdown a:hover {
|
|
5950
|
-
background: var(--ply-bg-surface-alt, #eee);
|
|
5951
|
-
}
|
|
5952
|
-
ul.dropdown a:focus-visible {
|
|
5953
|
-
outline: 2px solid var(--ply-color-focus, #0f62fe);
|
|
5954
|
-
outline-offset: 2px;
|
|
5955
|
-
}
|
|
5956
|
-
ul.dropdown li.divider {
|
|
5957
|
-
border-bottom: 1px solid var(--ply-border-color, #e2e2e2);
|
|
5958
|
-
}
|
|
5959
|
-
|
|
5960
|
-
.caret {
|
|
5961
|
-
display: inline-block;
|
|
5962
|
-
width: 0;
|
|
5963
|
-
height: 0;
|
|
5964
|
-
margin-left: 0.3em;
|
|
5965
|
-
vertical-align: middle;
|
|
5966
|
-
border-top: 5px solid;
|
|
5967
|
-
border-right: 5px solid transparent;
|
|
5968
|
-
border-left: 5px solid transparent;
|
|
5969
|
-
}
|
|
5970
|
-
.caret.caret-up {
|
|
5971
|
-
border-top: 0;
|
|
5972
|
-
border-bottom: 4px solid;
|
|
5973
|
-
}
|
|
5974
|
-
|
|
5975
5912
|
/* =Typeahead / Autocomplete
|
|
5976
5913
|
-----------------------------------------------------------------------------*/
|
|
5977
5914
|
.typeahead,
|
|
@@ -7101,14 +7038,6 @@ dialog[open]::backdrop {
|
|
|
7101
7038
|
[dir=rtl] .nav-stacked ul {
|
|
7102
7039
|
padding-right: 0;
|
|
7103
7040
|
}
|
|
7104
|
-
[dir=rtl] .dropdown-menu {
|
|
7105
|
-
left: auto;
|
|
7106
|
-
right: 0;
|
|
7107
|
-
}
|
|
7108
|
-
[dir=rtl] .dropdown-menu-right {
|
|
7109
|
-
right: auto;
|
|
7110
|
-
left: 0;
|
|
7111
|
-
}
|
|
7112
7041
|
[dir=rtl] .form select {
|
|
7113
7042
|
background-position: left 0.75em center;
|
|
7114
7043
|
padding-left: 2.4975rem;
|