This commit is contained in:
David Ralph
2020-10-28 17:13:19 +00:00
11 changed files with 238 additions and 58 deletions

View File

@@ -13,6 +13,7 @@
@import 'modules/marketplace';
@import 'modules/checkbox';
@import 'modules/buttons';
@import 'modules/dropdown';
@import 'modules/welcome';
body {

View File

@@ -0,0 +1,16 @@
.dropdown {
select {
background: linear-gradient(180deg, #ffb032 0%, #dd3b67 100%);
height: 34px;
width: 120px;
color: map-get($modal, "text");
border-image-source: linear-gradient(180deg, #ffb032 0%, #dd3b67 100%);
border-image-slice: 1;
border-width: 3px 4px;
}
select#language {
float: right;
}
}

View File

@@ -225,20 +225,6 @@ button.remove + input[type=color].colour {
margin-left: 7px;
}
select {
background: none;
height: 34px;
width: 120px;
border-image-slice: 1;
border-image-source: linear-gradient(180deg, #ffb032 0%, #dd3b67 100%);
border-left: 10px solid;
color: map-get($modal, "text");
}
select#language {
float: right;
}
#customBackgroundColour {
cursor: pointer;
}