Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2016-09-25 19:19:55 +0300
committerbrantje <brantje@gmail.com>2016-09-25 19:19:55 +0300
commit5823b34dcf8311c94cf392453aa695f3b7311175 (patch)
tree7c8748d3d620951c448991a77aea20364aea9bb6 /sass
parent514abefb84c46f08446c042b1baae5fbb875127e (diff)
Small fixes to menu
Diffstat (limited to 'sass')
-rw-r--r--sass/app.scss18
1 files changed, 13 insertions, 5 deletions
diff --git a/sass/app.scss b/sass/app.scss
index 54b86064..e4afe2b8 100644
--- a/sass/app.scss
+++ b/sass/app.scss
@@ -39,9 +39,7 @@
border-bottom: 1px solid #c9c9c9;
}
-#app-navigation+#app-content #passman-controls {
- left: 250px;
-}
+
#passman-controls {
box-sizing: border-box;
position: fixed;
@@ -57,10 +55,20 @@
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
- width: calc( 100% - 250px ) !important;
+
height: 44px !important;
}
-
+@media only screen and (max-width: 768px){
+ #passman-controls{
+ width: 100%;
+ }
+}
+@media only screen and (min-width: 768px){
+ #app-navigation+#app-content #passman-controls {
+ left: 250px;
+ width: calc( 100% - 250px ) !important;
+ }
+}
#passman-controls .button, #passman-controls, #passman-controls input[type='submit'], #passman-controls input[type='text'], #passman-controls input[type='password'], #passman-controls select {
box-sizing: border-box;
display: inline-block;