vrifox/gitea-theme
Archived
1
0
Fork 0
This commit is contained in:
Vrifox 2020-11-10 20:06:35 +01:00
parent 89bbab409c
commit fc38dc1006

View file

@ -240,14 +240,12 @@
} }
@mixin dropdown-selection { @mixin dropdown-selection {
.dropdown { .dropdown.selection {
background: $bg60; background: $bg60;
border: 0;
border-radius: $border-radius; border-radius: $border-radius;
color: $white; color: $white;
padding: 10px 0 10px 13px; padding: 10px 0 10px 13px;
&:first-of-type {
margin-left: auto;
}
&:hover { &:hover {
background: $bg50; background: $bg50;
.menu { .menu {
@ -256,17 +254,24 @@
} }
} }
} }
span.text { &.visible {
i.dropdown.icon { .text {
padding: 0; color: $white;
} }
} }
i.dropdown.icon {
padding: 10px;
}
.text {
padding: 1.5px 0;
}
.menu { .menu {
background: $bg60; background: $bg60;
border: 1px solid $bg50; border: 0;
box-shadow: none; box-shadow: none;
margin-top: 0; margin-top: 0;
.item { .item {
border-color: $bg50;
color: $white !important; color: $white !important;
&:hover { &:hover {
background: $bg50; background: $bg50;
@ -309,6 +314,16 @@
@mixin settings { @mixin settings {
.container { .container {
.message {
box-shadow: none;
color: $white;
&.positive {
background: $green;
}
&.negative {
background: $green;
}
}
.header { .header {
background: $bg60; background: $bg60;
border: 0; border: 0;
@ -340,11 +355,15 @@
} }
input { input {
background: $bg40; background: $bg40;
border: 0;
color: $white; color: $white;
font-family: $font-family; font-family: $font-family;
&::selection {
background: $white;
color: $bg40;
}
&:focus { &:focus {
background: $bg50; background: $bg50;
border: 2px solid $bg60;
color: $white; color: $white;
} }
} }
@ -352,20 +371,29 @@
color: $white; color: $white;
&.poping.up { &.poping.up {
&::before { &::before {
background: rgb(60, 60, 90); background: $bg60;
border-color: rgb(70, 70, 105); border-color: $bg70;
} }
&::after { &::after {
color: $white; color: $white;
} }
} }
.text.red {
color: $red !important;
}
} }
textarea { textarea {
background: $bg40; background: $bg40;
border: 0;
color: $white;
&::selection {
background: $white;
color: $bg40;
}
}
}
} }
@include dropdown-selection; @include dropdown-selection;
} }
} }
}
}
} }