diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-10-25 13:16:13 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-10-25 13:16:13 +0200 |
commit | 551cffd1b8d80163bd63d2ed195e45698678a868 (patch) | |
tree | 41db3810a17e81a12ff51b1d93e2bf2860bfd6cd /apps/theming/lib | |
parent | 8a231a4223a45b7e58bfeb30196c54126fc56521 (diff) | |
download | nextcloud-server-551cffd1b8d80163bd63d2ed195e45698678a868.tar.gz nextcloud-server-551cffd1b8d80163bd63d2ed195e45698678a868.zip |
remove slight transparency of primary action button, ref #1615
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/theming/lib')
-rw-r--r-- | apps/theming/lib/Controller/ThemingController.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/theming/lib/Controller/ThemingController.php b/apps/theming/lib/Controller/ThemingController.php index b4e3a95710f..86aba3f62ce 100644 --- a/apps/theming/lib/Controller/ThemingController.php +++ b/apps/theming/lib/Controller/ThemingController.php @@ -331,14 +331,12 @@ class ThemingController extends Controller { '.primary:active, input[type="submit"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active {' . 'border: 1px solid '.$elementColor.';'. 'background-color: '.$elementColor.';'. - 'opacity: 0.8;' . 'color: ' . $textColor . ';'. "}\n" . '.primary:hover, input[type="submit"].primary:hover, input[type="button"].primary:hover, button.primary:hover, .button.primary:hover,' . '.primary:focus, input[type="submit"].primary:focus, input[type="button"].primary:focus, button.primary:focus, .button.primary:focus {' . 'border: 1px solid '.$elementColor.';'. 'background-color: '.$elementColor.';'. - 'opacity: 1.0;' . 'color: ' . $textColor . ';'. "}\n" . '.primary:disabled, input[type="submit"].primary:disabled, input[type="button"].primary:disabled, button.primary:disabled, .button.primary:disabled,' . |