This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* small change * styling changes * color variables added * color variable added * Removed quotes * updated the color variables * alignment change * small update
- Loading branch information
Showing
5 changed files
with
131 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,92 @@ | ||
// Copyright (c) Microsoft. All rights reserved. | ||
|
||
@import '../../styles/variables/colors'; | ||
|
||
.edit-input { | ||
input:not([type="radio"]), | ||
textarea, | ||
select { | ||
border: 1px #454a4e solid; | ||
background-color: #1B1D1F; | ||
width: 100%; | ||
color: #afb9c3; | ||
padding: 0px 8px; | ||
input:not([type=radio]), | ||
textarea, | ||
select { | ||
border: 1px $borderColor solid; | ||
background-color: $gridTileDark; | ||
width: 100%; | ||
color: $lightestGray; | ||
padding: 0px 8px; | ||
} | ||
|
||
.radio:not(:last-child) label { margin-bottom: 16px; } | ||
|
||
textarea { padding: 7px 8px; } | ||
|
||
input::-webkit-input-placeholder, | ||
textarea::-webkit-input-placeholder { color: $lightestGray; } | ||
|
||
input:-moz-placeholder, | ||
textarea:-moz-placeholder { color: $lightestGray; } | ||
|
||
label { | ||
display: block; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
margin: 0; | ||
} | ||
|
||
.radio-img { | ||
margin-right: 5px; | ||
height: 10px; | ||
width: 10px; | ||
display: inline-block; | ||
|
||
img { | ||
height: 100%; | ||
width: 100%; | ||
} | ||
} | ||
|
||
.radio:not(:last-child) label { margin-bottom: 16px; } | ||
.field-select { | ||
|
||
textarea { padding: 7px 8px; } | ||
.Select-control { | ||
background-color: $gridTileDark; | ||
border: 1px solid $borderColor !important; | ||
padding: 0px 3px 0px 8px !important; | ||
margin-bottom: 2px; | ||
vertical-align: middle !important; | ||
height: 10px; | ||
|
||
input::-webkit-input-placeholder, | ||
textarea::-webkit-input-placeholder { color: #afb9c3; } | ||
input { border: none; } | ||
} | ||
|
||
input:-moz-placeholder, | ||
textarea:-moz-placeholder { color: #afb9c3; } | ||
.Select { | ||
width: 100% !important; | ||
margin-top: 0px !important; | ||
} | ||
|
||
label { | ||
display: block; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
margin: 0; | ||
.Select-placeholder, | ||
.Select-value, | ||
.Select-arrow-zone { | ||
padding-top: 2px !important; | ||
line-height: 21px !important; | ||
} | ||
|
||
.radio-img { | ||
margin-right: 5px; | ||
height: 10px; | ||
width: 10px; | ||
display: inline-block; | ||
.Select-menu-outer { | ||
border: 1px solid $borderColor !important; | ||
width: 100%; | ||
margin-left: 1px !important; | ||
max-height: 200px !important; | ||
} | ||
|
||
img { | ||
height: 100%; | ||
width: 100%; | ||
} | ||
.Select-input { | ||
margin-left: -16px; | ||
padding-top: 2px; | ||
} | ||
|
||
.field-select { | ||
|
||
.Select-control { | ||
background-color: #1b1d1f; | ||
border: 1px solid #454a4e !important; | ||
padding: 0px 3px 0px 8px !important; | ||
margin-bottom: 2px; | ||
vertical-align: middle !important; | ||
height: 10px; | ||
|
||
input { border: 0; } | ||
} | ||
|
||
.Select { | ||
width: 100% !important; | ||
margin-top: 0px !important; | ||
} | ||
|
||
.Select-placeholder, | ||
.Select-value, | ||
.Select-arrow-zone { | ||
padding-top: 2px !important; | ||
line-height: 21px !important; | ||
} | ||
|
||
.Select-menu-outer { | ||
border: 1px solid #454A4E !important; | ||
width: 100%; | ||
margin-left: 1px !important; | ||
max-height: 200px !important; | ||
} | ||
|
||
.Select-input { | ||
margin-left: -16px; | ||
padding-top: 2px; | ||
} | ||
|
||
.Select-placeholder, .Select--single > .Select-control .Select-value { | ||
padding: 0px 10px; | ||
line-height: 21px !important; | ||
} | ||
|
||
.Select-clear { display: none; } | ||
.Select-placeholder, | ||
.Select--single > .Select-control .Select-value { | ||
padding: 0px 10px; | ||
line-height: 21px !important; | ||
top: 5px; | ||
} | ||
|
||
.Select-clear { display: none; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.