mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
css: fix broken popup colorpicker chatAndUsers
This commit is contained in:
parent
eb0d8839c2
commit
71a3579ae7
3 changed files with 15 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
.popup.popup-show {
|
||||
.popup.popup-show, .popup#users.chatAndUsers {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
|||
transition: all 0.3s cubic-bezier(0.74, -0.05, 0.27, 1.75)
|
||||
}
|
||||
|
||||
.popup.popup-show > .popup-content {
|
||||
.popup.popup-show > .popup-content, .popup#users.chatAndUsers > .popup-content {
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
right: 0;
|
||||
left: auto;
|
||||
}
|
||||
.popup#users.chatAndUsers .popup-content {
|
||||
.popup#users.chatAndUsers > .popup-content {
|
||||
border: none;
|
||||
border-bottom: 1px solid #ccc;
|
||||
border-left: 1px solid #ccc;
|
||||
|
|
|
@ -2,14 +2,23 @@ table#otheruserstable {
|
|||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.popup#users.chatAndUsers .popup-content {
|
||||
.popup#users.chatAndUsers > .popup-content {
|
||||
padding: 20px 10px;
|
||||
height: 250px;
|
||||
background-color: white;
|
||||
color: #374256;
|
||||
border-left: none;
|
||||
transition: none;
|
||||
}
|
||||
.popup#users.chatAndUsers .popup-content {
|
||||
background-color: white;
|
||||
color: #374256;
|
||||
}
|
||||
.popup#users.chatAndUsers #mycolorpicker.popup {
|
||||
right: calc(100% + 30px);
|
||||
top: 15px;
|
||||
}
|
||||
.popup#users.chatAndUsers #mycolorpicker.popup .btn-default {
|
||||
color: #374256;
|
||||
}
|
||||
|
||||
#otheruserstable .swatch {
|
||||
border: none !important;
|
||||
|
|
Loading…
Reference in a new issue