diff options
author | Jay Sitter <jsitter@gmail.com> | 2014-10-31 13:28:39 -0400 |
---|---|---|
committer | Jay Sitter <jsitter@gmail.com> | 2014-10-31 13:28:39 -0400 |
commit | 344c8f6b5c2636b74492956f53f3bc06dcb5c8d1 (patch) | |
tree | 3ba19df6e6a013732f748354142ebad6e6a6991e /themes | |
parent | 827bd1f8990e18e1978c95484680d51524ca19bf (diff) | |
download | wallabag-344c8f6b5c2636b74492956f53f3bc06dcb5c8d1.tar.gz wallabag-344c8f6b5c2636b74492956f53f3bc06dcb5c8d1.tar.zst wallabag-344c8f6b5c2636b74492956f53f3bc06dcb5c8d1.zip |
Fixing popup form width issue on narrow width
Diffstat (limited to 'themes')
-rwxr-xr-x | themes/baggy/css/main.css | 9 |
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 | ||