fix menu text color in dark themes

This commit is contained in:
zadam 2019-04-01 21:38:21 +02:00
parent 3670800a51
commit 925dc258a6
4 changed files with 10 additions and 6 deletions

Binary file not shown.

10
package-lock.json generated
View File

@ -4798,9 +4798,9 @@
} }
}, },
"file-type": { "file-type": {
"version": "10.9.0", "version": "10.10.0",
"resolved": "https://registry.npmjs.org/file-type/-/file-type-10.9.0.tgz", "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.10.0.tgz",
"integrity": "sha512-9C5qtGR/fNibHC5gzuMmmgnjH3QDDLKMa8lYe9CiZVmAnI4aUaoMh40QyUPzzs0RYo837SOBKh7TYwle4G8E4w==" "integrity": "sha512-3CTQE/db3dnK2jsfd4XiXMKw9nD0QVEMRLdBzqYDRr5BvYMUccDpP8hMc1uPb1VZ9Iw/cAJjYPNwJ5UzxGqsRg=="
}, },
"filename-regex": { "filename-regex": {
"version": "2.0.1", "version": "2.0.1",
@ -6082,7 +6082,7 @@
"resolved": "https://registry.npmjs.org/image-type/-/image-type-4.0.0.tgz", "resolved": "https://registry.npmjs.org/image-type/-/image-type-4.0.0.tgz",
"integrity": "sha512-V1NCIexmmA9dBoO07NOFXe2nTU06siLuuaGD1zLRbLfTYmGMLPShPakPf3ts6J0ctdpLpJRKFcJWKjuacwZzWA==", "integrity": "sha512-V1NCIexmmA9dBoO07NOFXe2nTU06siLuuaGD1zLRbLfTYmGMLPShPakPf3ts6J0ctdpLpJRKFcJWKjuacwZzWA==",
"requires": { "requires": {
"file-type": "10.9.0" "file-type": "10.10.0"
} }
}, },
"imagemin": { "imagemin": {
@ -6090,7 +6090,7 @@
"resolved": "https://registry.npmjs.org/imagemin/-/imagemin-6.1.0.tgz", "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-6.1.0.tgz",
"integrity": "sha512-8ryJBL1CN5uSHpiBMX0rJw79C9F9aJqMnjGnrd/1CafegpNuA81RBAAru/jQQEOWlOJJlpRnlcVFF6wq+Ist0A==", "integrity": "sha512-8ryJBL1CN5uSHpiBMX0rJw79C9F9aJqMnjGnrd/1CafegpNuA81RBAAru/jQQEOWlOJJlpRnlcVFF6wq+Ist0A==",
"requires": { "requires": {
"file-type": "10.9.0", "file-type": "10.10.0",
"globby": "8.0.1", "globby": "8.0.1",
"make-dir": "1.3.0", "make-dir": "1.3.0",
"p-pipe": "1.2.0", "p-pipe": "1.2.0",

View File

@ -37,7 +37,7 @@
"electron-window-state": "5.0.3", "electron-window-state": "5.0.3",
"express": "4.16.4", "express": "4.16.4",
"express-session": "1.15.6", "express-session": "1.15.6",
"file-type": "10.9.0", "file-type": "10.10.0",
"fs-extra": "7.0.1", "fs-extra": "7.0.1",
"get-port": "4.2.0", "get-port": "4.2.0",
"helmet": "3.16.0", "helmet": "3.16.0",

View File

@ -455,6 +455,10 @@ div.ui-tooltip {
float: right; float: right;
} }
.dropdown-item {
color: var(--menu-text-color) !important;
}
.dropdown-item.disabled, .dropdown-item.disabled kbd { .dropdown-item.disabled, .dropdown-item.disabled kbd {
color: #aaa !important; color: #aaa !important;
} }