diff options
author | friendica <redmatrix@redmatrix.me> | 2015-04-17 17:21:10 -0700 |
---|---|---|
committer | friendica <redmatrix@redmatrix.me> | 2015-04-17 17:21:10 -0700 |
commit | 9f35971860e35a70162e469d7812c14ff949bf98 (patch) | |
tree | 621b3a34395bfce3a6d6ebc883dcc9a70921d0f3 /view/theme/redbasic | |
parent | 3d99a6b5c4b8d754dff0666f7cca84724e0f95d9 (diff) | |
parent | c02ff823f6b84cda431f6ca39701c88d22607b77 (diff) | |
download | volse-hubzilla-9f35971860e35a70162e469d7812c14ff949bf98.tar.gz volse-hubzilla-9f35971860e35a70162e469d7812c14ff949bf98.tar.bz2 volse-hubzilla-9f35971860e35a70162e469d7812c14ff949bf98.zip |
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'view/theme/redbasic')
-rw-r--r-- | view/theme/redbasic/css/style.css | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index b0614fcc4..df8d34066 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1586,11 +1586,14 @@ img.mail-list-sender-photo { font-weight: bold; } -.jothidden >input, .jothidden >input { - border: 1px solid #fff; +.jothidden > input { + border: 1px solid $bgcolour; + background-color: $bgcolour; } -.jothidden >input:hover, .jothidden >input:focus { +.jothidden > input:hover, +.jothidden > input:focus { border: 1px solid #cccccc; + background-color: #fff; } #profile-jot-text { @@ -1723,7 +1726,8 @@ img.mail-list-sender-photo { font-size: 0.833em; } -.wall-item-content { +.wall-item-content, +.page-body { font-size: $font_size; clear: both; } @@ -2210,8 +2214,8 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { /* Modified original CSS to match input in Redbasic */ .jothidden .bootstrap-tagsinput { - border-color:#fff; - background-color: #fff; + border-color: $bgcolour; + background-color: $bgcolour; box-shadow: none; display: inline-block; border-radius: $radiuspx; @@ -2225,7 +2229,8 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { } .jothidden .bootstrap-tagsinput:hover, .jothidden .bootstrap-tagsinput:focus { - border: 1px solid #cccccc; + border: 1px solid #ccc; + background-color: #fff; } /* Abusing theme-green is less work than makeing a new new one */ |