Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/static/sass/backend/options/input.scss

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + [class^="ct-option"] {
2 +
3 + input[type="text"],
4 + input[type="number"] {
5 + // --input-font-size: 12px;
6 +
7 + height: var(--input-height, 30px) !important;
8 + width: var(--input-width, 100%) !important;
9 + margin: var(--margin, 0) !important;
10 + padding: var(--padding, 3px 8px) !important;
11 + min-height: initial;
12 + font-size: var(--input-font-size, 12px) !important;
13 + color: #555d66;
14 + line-height: normal;
15 + background-color: var(--background, #fff);
16 + border: var(--borderWidth, 1px) solid var(--optionBorderColor, #ddd) !important;
17 + border-radius: var(--ui-border-radius, 3px) !important;
18 + box-shadow: 0 0 0 0 transparent;
19 + transition: box-shadow 0.1s linear,
20 + background 0.1s linear,
21 + border-radius 0.1s linear,
22 + border-color 0.1s linear;
23 +
24 + &:hover,
25 + &:focus {
26 + --optionBorderColor: var(--ui-accent-color) !important;
27 + }
28 +
29 + &:focus {
30 + box-shadow: 0 0 0 1px var(--ui-accent-color);
31 + }
32 +
33 + &::placeholder {
34 + opacity: 0.5;
35 + }
36 + }
37 +
38 + input[type="number"] {
39 + -moz-appearance: textfield;
40 +
41 + &::-webkit-inner-spin-button,
42 + &::-webkit-outer-spin-button {
43 + margin: 0;
44 + -webkit-appearance: none;
45 + }
46 + }
47 + }
48 +