Number test setting

This commit is contained in:
Jiiks 2018-02-12 02:51:10 +02:00
parent f37058779a
commit c52f1eb0b8
3 changed files with 10 additions and 1 deletions

View File

@ -97,6 +97,13 @@
}
]
},
{
"id": "spanOpacity2",
"type": "number",
"value": 0,
"text": "Span opacity",
"hint": "Number Test Setting Hint"
},
{
"id": "default-0",
"type": "text",

View File

@ -7,6 +7,7 @@ div {
span {
border: 1px solid rgba(20, 20, 20, $spanOpacity);
color: $radioTest !important;
opacity: $spanOpacity2 !important;
}
.avatar-large {

View File

@ -2,4 +2,5 @@ $divBg: green !default;
$spanOpacity: 0.5 !default;
$avatar: "https://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Cow_female_black_white.jpg/220px-Cow_female_black_white.jpg" !default;
$avatarRadius: 8px !default;
$radioTest: red !default;
$radioTest: red !default;
$spanOpacity2: 1 !default;