mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Some browsers don't properly support tri-state checkboxes, so create our own control to handle true/false/null. Fixes #2848
This commit is contained in:
committed by
Dave Page
parent
b284572afe
commit
930dd8af1f
28
web/pgadmin/static/css/bootstrap.overrides.css
vendored
28
web/pgadmin/static/css/bootstrap.overrides.css
vendored
@@ -1399,3 +1399,31 @@ body {
|
||||
font-size: 8px;
|
||||
color: #888888;
|
||||
}
|
||||
|
||||
/* CSS for custom checkbox editor in SlickGrid */
|
||||
.multi-checkbox .check {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
border: 1px solid #333;
|
||||
margin: 3px;
|
||||
text-align: center;
|
||||
line-height: 15px;
|
||||
}
|
||||
|
||||
.multi-checkbox .check.unchecked {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.multi-checkbox .check.partial {
|
||||
background: #cccccc;
|
||||
}
|
||||
|
||||
.multi-checkbox .check.checked:after {
|
||||
content: "\2713";
|
||||
}
|
||||
|
||||
.multi-checkbox .check.partial:after {
|
||||
content: "\fe56";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user