Text Wrap Fix
Fixes text not wrapping when exceeding its limit on the New panel.
This commit is contained in:
parent
3059df47e3
commit
97c0ad1906
|
|
@ -36,7 +36,7 @@ h6 {
|
||||||
background-color: #111;
|
background-color: #111;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
.AdminPanel {
|
.NewPanel.AdminPanel {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
#MasterContainer.NewPanel .iphone-sidebar, #MasterContainer.NewPanel .iphone-content, #MasterContainer #AdminWrapper, #MasterContainer #BodyWrapper {
|
#MasterContainer.NewPanel .iphone-sidebar, #MasterContainer.NewPanel .iphone-content, #MasterContainer #AdminWrapper, #MasterContainer #BodyWrapper {
|
||||||
|
|
@ -135,19 +135,19 @@ h6 {
|
||||||
.NewPanel.AdminPanel .Reminder {
|
.NewPanel.AdminPanel .Reminder {
|
||||||
color: #ff7300
|
color: #ff7300
|
||||||
}
|
}
|
||||||
.text-error {
|
.NewPanel .text-error {
|
||||||
display: block;
|
display: block;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #d6241a;
|
color: #d6241a;
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
.text-header {
|
.NewPanel .text-header {
|
||||||
display: block;
|
display: block;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 5px 0;
|
padding: 5px 0;
|
||||||
}
|
}
|
||||||
.text-secondary {
|
.NewPanel .text-secondary {
|
||||||
color: #bbb;
|
color: #bbb;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
@ -187,7 +187,7 @@ h6 {
|
||||||
.NewPanel.AdminPanel #SearchInput:focus, .AdminPanel #SearchInput:active {
|
.NewPanel.AdminPanel #SearchInput:focus, .AdminPanel #SearchInput:active {
|
||||||
border-color: #0099ff;
|
border-color: #0099ff;
|
||||||
}
|
}
|
||||||
#SearchInput, .btn-neutral {
|
.NewPanel #SearchInput, .NewPanel .btn-neutral {
|
||||||
margin: 0 5px;
|
margin: 0 5px;
|
||||||
}
|
}
|
||||||
.NewPanel.AdminPanel #SearchInput:focus-visible {
|
.NewPanel.AdminPanel #SearchInput:focus-visible {
|
||||||
|
|
@ -315,6 +315,9 @@ h6 {
|
||||||
-ms-user-select: text;
|
-ms-user-select: text;
|
||||||
user-select: text;
|
user-select: text;
|
||||||
}
|
}
|
||||||
|
.NewPanel .UserDetails .Row {
|
||||||
|
overflow-wrap: anywhere;
|
||||||
|
}
|
||||||
.NewPanel .AuthenticatedUserName:hover, .NewPanel .Backbtn:hover, .NewPanel .Backbtn:hover + .BackArrow {
|
.NewPanel .AuthenticatedUserName:hover, .NewPanel .Backbtn:hover, .NewPanel .Backbtn:hover + .BackArrow {
|
||||||
color: #2fcfff;
|
color: #2fcfff;
|
||||||
transition: .25s all ease-in-out;
|
transition: .25s all ease-in-out;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue