Fix the stylelint (#11991)
parent
02ff65c788
commit
4cca6094e4
@ -1,54 +1,64 @@ |
||||
.contextual-bar__content { |
||||
&.livestream { |
||||
justify-content: flex-start; |
||||
} |
||||
& .rc-button--stack { |
||||
width: 100%; |
||||
} |
||||
&.livestream { |
||||
justify-content: flex-start; |
||||
} |
||||
|
||||
& .rc-button--stack { |
||||
width: 100%; |
||||
} |
||||
} |
||||
|
||||
.thumbnail-container { |
||||
position: relative; |
||||
height: 270px; |
||||
|
||||
& .popout { |
||||
&--absolute-center { |
||||
position: absolute; |
||||
top: calc(50% - 25px); |
||||
left: calc(50% - 25px); |
||||
|
||||
font-size: 50px; |
||||
} |
||||
&--play-solid { |
||||
fill: white; |
||||
} |
||||
} |
||||
position: relative; |
||||
|
||||
height: 270px; |
||||
|
||||
& .popout { |
||||
&--absolute-center { |
||||
position: absolute; |
||||
top: calc(50% - 25px); |
||||
left: calc(50% - 25px); |
||||
|
||||
font-size: 50px; |
||||
} |
||||
|
||||
&--play-solid { |
||||
fill: white; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.liveStreamTab__form { |
||||
& .rc-switch { |
||||
padding: 15px 5px; |
||||
} |
||||
& .rc-input__label p { |
||||
padding: 10px 0; |
||||
} |
||||
& .rc-switch { |
||||
padding: 15px 5px; |
||||
} |
||||
|
||||
& .rc-input__label p { |
||||
padding: 10px 0; |
||||
} |
||||
} |
||||
|
||||
.livestream--url { |
||||
overflow: hidden; |
||||
text-overflow: ellipsis; |
||||
white-space: nowrap; |
||||
|
||||
margin: 10px 5px; |
||||
padding: 10px 0; |
||||
font-size: 15px; |
||||
|
||||
& .current-setting { |
||||
display: inline-block; |
||||
text-decoration: none; |
||||
color: black; |
||||
} |
||||
|
||||
& .rc-button { |
||||
width: 49% |
||||
} |
||||
overflow: hidden; |
||||
|
||||
margin: 10px 5px; |
||||
padding: 10px 0; |
||||
|
||||
white-space: nowrap; |
||||
|
||||
text-overflow: ellipsis; |
||||
|
||||
font-size: 15px; |
||||
|
||||
& .current-setting { |
||||
display: inline-block; |
||||
|
||||
text-decoration: none; |
||||
|
||||
color: black; |
||||
} |
||||
|
||||
& .rc-button { |
||||
width: 49%; |
||||
} |
||||
} |
||||
|
||||
@ -1,43 +1,64 @@ |
||||
.attachment { |
||||
& .action { |
||||
margin-top: 2px; |
||||
} |
||||
& .text-button { |
||||
color: #2c2d30; |
||||
min-width: 0; |
||||
max-width: 220px; |
||||
padding: 0 10px; |
||||
margin: 2px 2px 2px 0; |
||||
vertical-align: middle; |
||||
font-size: 13px; |
||||
height: 28px; |
||||
background: rgb(250, 250, 250); |
||||
font-weight: 500; |
||||
text-decoration: none; |
||||
user-select: none; |
||||
outline: none; |
||||
cursor: pointer; |
||||
border: 2px solid lightgray; |
||||
border-radius: 4px; |
||||
align-items: center; |
||||
position: relative; |
||||
display: inline-flex; |
||||
justify-content: center; |
||||
text-align: center; |
||||
white-space: nowrap; |
||||
-webkit-appearance: none; |
||||
-webkit-tap-highlight-color: transparent; |
||||
} |
||||
& .overflow-ellipsis { |
||||
display: block; |
||||
text-overflow: ellipsis; |
||||
overflow: hidden; |
||||
white-space: nowrap; |
||||
} |
||||
& .image-button { |
||||
max-height: 200px; |
||||
} |
||||
& .horizontal-buttons { |
||||
display: inline; |
||||
} |
||||
} |
||||
& .action { |
||||
margin-top: 2px; |
||||
} |
||||
|
||||
& .text-button { |
||||
|
||||
position: relative; |
||||
|
||||
display: inline-flex; |
||||
|
||||
min-width: 0; |
||||
max-width: 220px; |
||||
|
||||
height: 28px; |
||||
margin: 2px 2px 2px 0; |
||||
padding: 0 10px; |
||||
|
||||
cursor: pointer; |
||||
user-select: none; |
||||
|
||||
text-align: center; |
||||
|
||||
vertical-align: middle; |
||||
white-space: nowrap; |
||||
|
||||
text-decoration: none; |
||||
|
||||
color: #2c2d30; |
||||
|
||||
border: 2px solid lightgray; |
||||
border-radius: 4px; |
||||
|
||||
outline: none; |
||||
|
||||
background: rgb(250, 250, 250); |
||||
|
||||
font-size: 13px; |
||||
|
||||
font-weight: 500; |
||||
align-items: center; |
||||
-webkit-appearance: none; |
||||
justify-content: center; |
||||
-webkit-tap-highlight-color: transparent; |
||||
} |
||||
|
||||
& .overflow-ellipsis { |
||||
display: block; |
||||
|
||||
overflow: hidden; |
||||
|
||||
white-space: nowrap; |
||||
|
||||
text-overflow: ellipsis; |
||||
} |
||||
|
||||
& .image-button { |
||||
max-height: 200px; |
||||
} |
||||
|
||||
& .horizontal-buttons { |
||||
display: inline; |
||||
} |
||||
} |
||||
|
||||
Loading…
Reference in new issue