mirror of https://github.com/jitsi/jitsi-meet
Merge pull request #1129 from BeatC/make-identical-text-input
Make identical text inputpull/1141/head 1493
commit
686ee1111a
@ -0,0 +1,38 @@ |
||||
/** |
||||
* Hides an element. |
||||
*/ |
||||
.hide { |
||||
display: none !important; |
||||
} |
||||
|
||||
/** |
||||
* Shows an element. |
||||
*/ |
||||
.show { |
||||
display: block !important; |
||||
} |
||||
|
||||
/** |
||||
* Shows an inline element. |
||||
*/ |
||||
.show-inline { |
||||
display: inline-block !important; |
||||
} |
||||
|
||||
/** |
||||
* Shows as a list item |
||||
**/ |
||||
.show-list-item { |
||||
display: list-item !important; |
||||
} |
||||
|
||||
/** |
||||
* Shows a flex element. |
||||
*/ |
||||
.show-flex { |
||||
display: -webkit-box !important; |
||||
display: -moz-box !important; |
||||
display: -ms-flexbox !important; |
||||
display: -webkit-flex !important; |
||||
display: flex !important; |
||||
} |
@ -0,0 +1,32 @@ |
||||
.input-control { |
||||
@include transition(all .2s ease-in); |
||||
display: inline-block; |
||||
width: 100%; |
||||
padding: 5px 7px; |
||||
color: $inputColor; |
||||
border-radius: $borderRadius; |
||||
line-height: 32px; |
||||
height: 32px; |
||||
text-align: left; |
||||
border:1px solid $inputBorderColor; |
||||
background-color: $inputBackground; |
||||
margin-bottom: 8px; |
||||
|
||||
&:last-child { |
||||
margin-bottom: inherit; |
||||
} |
||||
|
||||
&::selection { |
||||
background-color: $defaultDarkSelectionColor; |
||||
} |
||||
|
||||
|
||||
&.error { |
||||
color: $errorColor; |
||||
border-color: $errorColor; |
||||
} |
||||
} |
||||
|
||||
@include placeholder { |
||||
color: $placeHolderColor; |
||||
} |
@ -0,0 +1,11 @@ |
||||
.link { |
||||
cursor: pointer; |
||||
color: $linkFontColor; |
||||
@include transition(color .1s ease-out); |
||||
|
||||
&:hover { |
||||
color: $linkHoverFontColor; |
||||
text-decoration: underline; |
||||
@include transition(color .1s ease-in); |
||||
} |
||||
} |
Loading…
Reference in new issue