aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJay Sitter <jsitter@gmail.com>2014-10-31 13:28:39 -0400
committerJay Sitter <jsitter@gmail.com>2014-10-31 13:28:39 -0400
commit344c8f6b5c2636b74492956f53f3bc06dcb5c8d1 (patch)
tree3ba19df6e6a013732f748354142ebad6e6a6991e
parent827bd1f8990e18e1978c95484680d51524ca19bf (diff)
downloadwallabag-344c8f6b5c2636b74492956f53f3bc06dcb5c8d1.tar.gz
wallabag-344c8f6b5c2636b74492956f53f3bc06dcb5c8d1.tar.zst
wallabag-344c8f6b5c2636b74492956f53f3bc06dcb5c8d1.zip
Fixing popup form width issue on narrow width
-rwxr-xr-xthemes/baggy/css/main.css9
1 files changed, 8 insertions, 1 deletions
diff --git a/themes/baggy/css/main.css b/themes/baggy/css/main.css
index 01704975..2ef35425 100755
--- a/themes/baggy/css/main.css
+++ b/themes/baggy/css/main.css
@@ -1053,8 +1053,15 @@ pre code {
1053 display: none; 1053 display: none;
1054 } 1054 }
1055 1055
1056 #bagit-form, #search-form { 1056 .popup-form, #bagit-form, #search-form {
1057 left: 0; 1057 left: 0;
1058 width: 100%;
1059 }
1060
1061 .popup-form form,
1062 #bagit-form form,
1063 #search-form form {
1064 width: 100%;
1058 } 1065 }
1059} 1066}
1060 1067