Merge pull request #2692 from brkcvn/master

Item selected styling on document
This commit is contained in:
Burak Civan 2022-10-26 10:54:45 +03:00 committed by GitHub
commit 9d29dfd147
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 0 deletions

11
public/css/app.css vendored
View File

@ -47400,6 +47400,17 @@ html[dir="rtl"] .lines-radius-border thead td:last-child {
padding: 4px 15px;
}
/* document body selected */
::-moz-selection {
background: #55588B;
color: #FFFFFF;
}
::selection {
background: #55588B;
color: #FFFFFF;
}
/* document body selected */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;

View File

@ -608,6 +608,17 @@ html[dir="rtl"] .lines-radius-border thead td:last-child {
padding: 4px 15px;
}
/* document body selected */
::-moz-selection {
background: #55588B;
color: #FFFFFF;
}
::selection {
background: #55588B;
color: #FFFFFF;
}
/* document body selected */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;