summaryrefslogtreecommitdiffstats
path: root/core/css/fixes.scss
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-03-09 15:36:03 -0600
committerMorris Jobke <hey@morrisjobke.de>2017-03-09 15:36:03 -0600
commit0c22a6696703225baabd6a4afaad5759745da8c5 (patch)
treeea82aebfb153fcae04f0338dc2ba4a7a28383c7b /core/css/fixes.scss
parentf2cf85fad2f25caf293126ca1058fe3e9109c75f (diff)
downloadnextcloud-server-0c22a6696703225baabd6a4afaad5759745da8c5.tar.gz
nextcloud-server-0c22a6696703225baabd6a4afaad5759745da8c5.zip
Add more styles to the server.scss
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/css/fixes.scss')
-rw-r--r--core/css/fixes.scss18
1 files changed, 18 insertions, 0 deletions
diff --git a/core/css/fixes.scss b/core/css/fixes.scss
new file mode 100644
index 00000000000..3cb89c6599f
--- /dev/null
+++ b/core/css/fixes.scss
@@ -0,0 +1,18 @@
+/* ---- BROWSER-SPECIFIC FIXES ---- */
+
+/* remove dotted outlines in Firefox */
+::-moz-focus-inner {
+ border: 0;
+}
+
+/* fix height of select boxes for OS X */
+select {
+ height: 32px;
+}
+
+/* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */
+.ie #show, .ie #show+label {
+ display: none;
+ visibility: hidden;
+}
+