summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-12-03 13:25:34 +0300
committerAndrew Dolgov <[email protected]>2017-12-03 13:25:34 +0300
commit09bc54c6901c5e4f6ec1d2a8b00fbf450aa258dd (patch)
tree60f82d0ee2d4caeb8e97885876f11257a3dd9a07 /css
parent3f2a8714219d33eb57f44e7989c320a63ffc8fb9 (diff)
further stylesheet simplification related fixes
Diffstat (limited to 'css')
-rw-r--r--css/utility.less56
1 files changed, 27 insertions, 29 deletions
diff --git a/css/utility.less b/css/utility.less
index fd6d4fbc1..a74b00780 100644
--- a/css/utility.less
+++ b/css/utility.less
@@ -177,35 +177,6 @@ body.ttrss_utility {
border-color : #e0e0e0;
}
- body#sharepopup {
- background-color : white;
- background-image : url("../images/toolbar.png");
- background-repeat : repeat-x;
- background-position : bottom;
- margin : 10px;
- padding : 0px;
- }
-
- body#sharepopup h1 {
- font-size : 14px;
- margin : 0px;
- color : rgb(82, 168, 236);
- }
-
- body#sharepopup table {
- background : white;
- border : 1px solid rgb(82, 168, 236);
- padding : 5px;
- }
-
- body#sharepopup form {
- height : 100%;
- }
-
- body#sharepopup input {
- width : 100%;
- }
-
div.autocomplete {
position : absolute;
width : 250px;
@@ -288,3 +259,30 @@ body.small_margins {
margin : 1em;
max-width : none;
}
+
+body#sharepopup {
+ background: white url("../images/toolbar.png") repeat-x bottom;
+ margin : 10px;
+ padding : 0px;
+
+ h1 {
+ font-size : 14px;
+ margin : 0px;
+ color : rgb(82, 168, 236);
+ }
+
+ table {
+ background : white;
+ border : 1px solid rgb(82, 168, 236);
+ padding : 5px;
+ }
+
+ form {
+ height : 100%;
+ }
+
+ input {
+ width : 100%;
+ }
+
+}