mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
f46dda0195
All stylelint rules that can be automatically fixed have been uncommented. The rules are: * `at-rule-empty-line-before` * `block-closing-brace-empty-line-before` * `block-closing-brace-newline-before` * `block-opening-brace-space-before` * `color-hex-case` * `color-hex-length` * `comment-empty-line-before` * `declaration-block-semicolon-newline-after` * `declaration-block-semicolon-space-after` * `declaration-block-trailing-semicolon` * `declaration-colon-space-after` * `declaration-empty-line-before` * `function-comma-space-after` * `function-comma-space-before` * `indentation` * `length-zero-no-unit` * `no-eol-whitespace` * `no-missing-end-of-source-newline` * `number-leading-zero` * `number-no-trailing-zeros` * `rule-empty-line-before` * `selector-list-comma-newline-after` * `selector-pseudo-element-colon-notation`
295 lines
3.6 KiB
SCSS
295 lines
3.6 KiB
SCSS
/*
|
|
Utility Classes
|
|
*/
|
|
|
|
/* lib */
|
|
|
|
.full-size {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.full-width {
|
|
width: 100%;
|
|
}
|
|
|
|
.full-flex-height {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.full-height {
|
|
height: 100%;
|
|
}
|
|
|
|
.flex-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.space-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.space-around {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.flex-column-bottom {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.flex-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.flex-space-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.flex-space-around {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.flex-right {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.flex-left {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.flex-fixed {
|
|
flex: none;
|
|
}
|
|
|
|
.flex-basis-auto {
|
|
flex-basis: auto;
|
|
}
|
|
|
|
.flex-grow {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.flex-wrap {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.flex-center {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.flex-justify-center {
|
|
justify-content: center;
|
|
}
|
|
|
|
.flex-align-center {
|
|
align-items: center;
|
|
}
|
|
|
|
.flex-self-end {
|
|
align-self: flex-end;
|
|
}
|
|
|
|
.flex-self-stretch {
|
|
align-self: stretch;
|
|
}
|
|
|
|
.flex-vertical {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.z-bump {
|
|
z-index: 1;
|
|
}
|
|
|
|
.select-none {
|
|
cursor: inherit;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.cursor-pointer {
|
|
cursor: pointer;
|
|
transform-origin: center center;
|
|
transition: transform 50ms ease-in-out;
|
|
}
|
|
|
|
.cursor-pointer:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.cursor-pointer:active {
|
|
transform: scale(0.97);
|
|
}
|
|
|
|
.cursor-disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.margin-bottom-sml {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.margin-bottom-med {
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.margin-right-left {
|
|
margin: 0 20px;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.text-transform-uppercase {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.font-small {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.font-medium {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
hr.horizontal-line {
|
|
display: block;
|
|
height: 1px;
|
|
border: 0;
|
|
border-top: 1px solid #ccc;
|
|
margin: 1em 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.hover-white:hover {
|
|
background: $white;
|
|
}
|
|
|
|
.red-dot {
|
|
background: #e91550;
|
|
color: $white;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.diamond {
|
|
transform: rotate(45deg);
|
|
background: #038789;
|
|
}
|
|
|
|
.hollow-diamond {
|
|
transform: rotate(45deg);
|
|
border: 3px solid #690496;
|
|
}
|
|
|
|
.golden-square {
|
|
background: #ebb33f;
|
|
}
|
|
|
|
.pending-dot {
|
|
background: $red;
|
|
left: 14px;
|
|
top: 14px;
|
|
color: $white;
|
|
border-radius: 10px;
|
|
height: 20px;
|
|
min-width: 20px;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 4px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.keyring-label {
|
|
z-index: 1;
|
|
font-size: 8px;
|
|
line-height: 8px;
|
|
background: rgba(255, 255, 255, 0.4);
|
|
color: #fff;
|
|
border-radius: 10px;
|
|
padding: 4px;
|
|
text-align: center;
|
|
height: 15px;
|
|
}
|
|
|
|
.tabSection {
|
|
min-width: 350px;
|
|
}
|
|
|
|
.menu-icon {
|
|
display: inline-block;
|
|
height: 12px;
|
|
min-width: 12px;
|
|
margin: 13px;
|
|
}
|
|
|
|
.ether-icon {
|
|
background: rgb(0, 163, 68);
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.testnet-icon {
|
|
background: #2465e1;
|
|
}
|
|
|
|
.drop-menu-item {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.invisible {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.one-line-concat {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.critical-error {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
color: $red;
|
|
}
|
|
|
|
/*
|
|
Misc
|
|
*/
|
|
|
|
// TODO: move into component-level contextual 'active' state
|
|
.letter-spacey {
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
.active {
|
|
color: #909090;
|
|
}
|
|
|
|
.check {
|
|
margin-left: 7px;
|
|
color: #f7861c;
|
|
flex: 1 0 auto;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|