From 960c35bad3a0dbaa7a1f2191aef60ad014d926ca Mon Sep 17 00:00:00 2001 From: marijus Date: Thu, 11 Dec 2014 11:44:46 +0100 Subject: move profile css to mod_profile and minoor fixes --- view/theme/redbasic/css/style.css | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index d32514dbf..331eed350 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -369,10 +369,6 @@ footer { clear: both; } - -.aprofile dt { - font-weight: bold; -} #page-profile .title { font-weight: bold; } @@ -417,14 +413,6 @@ footer { font-weight: normal; } -#profile-like { - margin-left: 15px; -} - -#profile-like-wrapper { - margin-bottom: 15px; -} - .fn { font-weight: bold; font-size: 16px; @@ -1658,17 +1646,6 @@ header { font-size : 2.8em !important; } -.profile-thing-list { - list-style-type: none; -} - -.profile-thing-list img { - margin-bottom: 5px; -} - -.profile-thing-list li { - margin-bottom: 15px; -} div.page-list-item { margin: 20px; -- cgit v1.2.3 From f113984d69ec6d5c16efcc67f43e755821a53a8e Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 16 Dec 2014 23:40:52 -0800 Subject: essentials for creating a "block-style" list-mode page such as one might have for a pinterest-style layout. Just load view/theme/redbasic/css/blockmode.css after redbasic PCSS - you're done. We may need some other indicator besides the number of comments to indicate "click here to see the rest of the article", but we're a bit short on space so maybe a view icon will work. --- view/theme/redbasic/css/blockmode.css | 15 +++++++++++++++ view/theme/redbasic/css/style.css | 5 +++++ 2 files changed, 20 insertions(+) create mode 100644 view/theme/redbasic/css/blockmode.css (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/blockmode.css b/view/theme/redbasic/css/blockmode.css new file mode 100644 index 000000000..cc1db209e --- /dev/null +++ b/view/theme/redbasic/css/blockmode.css @@ -0,0 +1,15 @@ + +.wall-item-content.conv-list-mode { + max-width: 280px; + height:200px; + min-height: 200px; + overflow: hidden; +} + +.thread-wrapper.toplevel_item.conv-list-mode { + width: 300px; + height: 300px; + float: left; + margin-left: 5px; + margin-bottom: 35px; +} diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 331eed350..382bed90e 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -838,6 +838,11 @@ footer { margin-bottom: 25px; } + +#conversation-end { + clear: both; +} + #nav-searchbar { float: right; margin-top: 2px; -- cgit v1.2.3 From aa73259a479d36394cf298979dc260030062ee70 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Sun, 21 Dec 2014 12:42:07 +0100 Subject: Fancy categories input with bootstrap-tagsinput --- view/theme/redbasic/css/style.css | 58 +++++++++++++++++++++------------------ 1 file changed, 31 insertions(+), 27 deletions(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 382bed90e..961572652 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1746,44 +1746,23 @@ img.mail-list-sender-photo { max-width: $converse_width; } -#jot-title, -#jot-category, -#jot-pagetitle { +.jothidden { font-weight: bold; - border: solid 1px #ffffff; border-radius: $radiuspx; } -#jot-category::-webkit-input-placeholder { +.jothidden input::-webkit-input-placeholder { font-weight: bold; } -#jot-category:-moz-placeholder { +.jothidden input::-moz-placeholder { font-weight: bold; } -#jot-title::-webkit-input-placeholder { - font-weight: bold; -} - -#jot-title:-moz-placeholder { - font-weight: bold; -} - -#jot-pagetitle::-webkit-input-placeholder { - font-weight: bold; -} - -#jot-pagetitle:-moz-placeholder { - font-weight: bold; +.jothidden >input, .jothidden >input { + border: 1px solid #fff; } - -#jot-title:hover, -#jot-title:focus, -#jot-pagetitle:hover, -#jot-pagetitle:focus, -#jot-category:hover, -#jot-category:focus { +.jothidden >input:hover, .jothidden >input:focus { border: 1px solid #cccccc; } @@ -2368,3 +2347,28 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { .bb_observer img { border: 3px solid red !important; } + +.bootstrap-tagsinput .tag:before { + /* Copied from icon-asterisk, is there a better way to do it? */ + font-family: FontAwesome; + font-weight: normal; + font-style: normal; + text-decoration: inherit; + content:"\f069"; +} + +/* Modified original CSS to match input in Redbasic */ +.bootstrap-tagsinput { + border-color:#fff; + background-color: #fff; + box-shadow: none; + display: inline-block; + border-radius: $radiuspx; + cursor: text; + padding: 0 6px; + width: 70% !important; +} + +.jothidden .bootstrap-tagsinput:hover, .jothidden .bootstrap-tagsinput:focus { + border: 1px solid #cccccc; +} -- cgit v1.2.3 From 27d786c979a07eddaa31a9f8fe291360b586b9cf Mon Sep 17 00:00:00 2001 From: marijus Date: Sun, 21 Dec 2014 20:11:30 +0100 Subject: files: make mod/filestorage.php load via ajax and some design work. work in progress... --- view/theme/redbasic/css/style.css | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 382bed90e..524db7899 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2076,18 +2076,8 @@ nav .dropdown-menu>li>a:hover,nav .dropdown-menu>li>a:focus{ color: $nav_active_icon_colour; } -/* Files */ - -#attach-edit-perms { - margin-top: 25px; - margin-bottom: 20px; - font-weight: bold; - font-size: 17px; -} - /* bootstrap overrides */ - blockquote { font-size: $font_size; font-style: italic; -- cgit v1.2.3 From b6bbb8e4ad04ba834ae613265473d838ff99ab52 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Mon, 22 Dec 2014 16:35:21 +0100 Subject: Show autocomplete taggable with special color --- view/theme/redbasic/css/style.css | 31 ++----------------------------- 1 file changed, 2 insertions(+), 29 deletions(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 4681ef5ba..d0b86982a 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1338,35 +1338,8 @@ footer { margin-top: 10px; } - - -/* autocomplete popup */ -.acpopup { - max-height:150px; - background-color:$acpopup_bgcolour; - overflow:auto; - border:1px solid $acpopup_bordercolour; -} -.acpopupitem { - background-color:$acpopup_bgcolour; - clear:left; -} -.acpopupitem.taggable { - background-color: $acpopup_tgbl_bgcolour; -} -.acpopupitem img { - float: left; - margin-right: 4px; -} - -.acpopupitem:hover { - text-decoration: underline; - color: $acpopup_hovercolour; - cursor:pointer; -} - -.acpopupitem.selected { - color: #FFFFFF; background: #3465A4; +.acpopup li div.taggable { + color:#cc0000; } /* popup notifications */ -- cgit v1.2.3 From 37534d110c0a544d76c4cd2d38d5cffa9f049ca9 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Mon, 22 Dec 2014 18:53:13 +0100 Subject: Center app names --- view/theme/redbasic/css/style.css | 1 - 1 file changed, 1 deletion(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 4681ef5ba..50a501ac3 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -583,7 +583,6 @@ footer { } .app-name { - width: 125px; overflow: none; } -- cgit v1.2.3 From fa65d31f3fb143acc8cc273d21a43c0bbd4f0524 Mon Sep 17 00:00:00 2001 From: Stefan Parviainen Date: Mon, 22 Dec 2014 23:06:04 +0100 Subject: Move app icon centering to style.css --- view/theme/redbasic/css/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 50a501ac3..e5a0e31d8 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -586,6 +586,14 @@ footer { overflow: none; } +.app-container img { + margin-left: auto; + margin-right: auto; + width: 80px; + height: 80px; + display: block; +} + .pager { padding: 10px; -- cgit v1.2.3 From 0cb0c2b1bfe22cb0fa983361a2f74d6b0fe6a596 Mon Sep 17 00:00:00 2001 From: marijus Date: Sat, 27 Dec 2014 10:10:56 +0100 Subject: more work on files --- view/theme/redbasic/css/style.css | 4 ---- 1 file changed, 4 deletions(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 0d1f45bda..7a6c13798 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1234,10 +1234,6 @@ footer { margin-bottom: 15px; } -#cloud-index td { - padding:5px; -} - /** * Plugins settings */ -- cgit v1.2.3 From 801ab709adfa808072f70fe1bf4b712ddc33df42 Mon Sep 17 00:00:00 2001 From: marijus Date: Sun, 28 Dec 2014 18:16:27 +0100 Subject: more work on files --- view/theme/redbasic/css/style.css | 59 +++++++++++++++++++++------------------ 1 file changed, 32 insertions(+), 27 deletions(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 7a6c13798..6f8b2a6a6 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1774,7 +1774,6 @@ img.mail-list-sender-photo { color: #777; } -#jot-perms-icon, .jot-icons { color: $toolicon_colour; } @@ -2031,6 +2030,38 @@ nav .dropdown-menu>li>a:hover,nav .dropdown-menu>li>a:focus{ color: $nav_active_icon_colour; } +.section-title-wrapper { + padding: 7px 10px; + background-color: $item_colour; + border-top-left-radius: $radiuspx; + border-top-right-radius: $radiuspx; + margin-bottom: 3px; +} + +.section-title-wrapper h2 { + margin-top: 0px; + margin-bottom: 0px; +} + +.section-content-tools-wrapper { + padding: 7px 10px; + background-color: $comment_item_colour; + margin-bottom: 3px; +} + +.section-content-wrapper { + padding: 7px 10px; + background-color: $comment_item_colour; + border-bottom-left-radius: $radiuspx; + border-bottom-right-radius: $radiuspx; +} + +[id^="cloud-index-"]:hover, +.cloud-index-active { + background-color: $item_colour; +} + + /* bootstrap overrides */ blockquote { @@ -2226,32 +2257,6 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { background-image: linear-gradient(to bottom, $advperm_gradientcol 0px, $advperm_bgcolour 100%); } -.section-title-wrapper { - padding: 7px 10px; - background-color: $item_colour; - border-top-left-radius: $radiuspx; - border-top-right-radius: $radiuspx; - margin-bottom: 3px; -} - -.section-title-wrapper h2 { - margin-top: 0px; - margin-bottom: 0px; -} - -.section-content-tools-wrapper { - padding: 7px 10px; - background-color: $comment_item_colour; - margin-bottom: 3px; -} - -.section-content-wrapper { - padding: 7px 10px; - background-color: $comment_item_colour; - border-bottom-left-radius: $radiuspx; - border-bottom-right-radius: $radiuspx; -} - @media screen and (max-width: 767px) { aside#region_1 { background: rgba(0, 0, 0, .1); -- cgit v1.2.3 From 1ab23061df0c92abd6a9ed5ece1507cf19efff58 Mon Sep 17 00:00:00 2001 From: marijus Date: Sun, 28 Dec 2014 20:34:12 +0100 Subject: files css fixes --- view/theme/redbasic/css/style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 6f8b2a6a6..15cf64aff 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2056,12 +2056,15 @@ nav .dropdown-menu>li>a:hover,nav .dropdown-menu>li>a:focus{ border-bottom-right-radius: $radiuspx; } +#cloud-index tr { + background-color: $comment_item_colour; +} + [id^="cloud-index-"]:hover, .cloud-index-active { - background-color: $item_colour; + background-color: $item_colour !important; } - /* bootstrap overrides */ blockquote { -- cgit v1.2.3 From fa23439b9cb93869985be14bc150c5a6a702ccce Mon Sep 17 00:00:00 2001 From: marijus Date: Sun, 28 Dec 2014 20:46:16 +0100 Subject: more files css fixes --- view/theme/redbasic/css/style.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 15cf64aff..357718623 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2056,13 +2056,15 @@ nav .dropdown-menu>li>a:hover,nav .dropdown-menu>li>a:focus{ border-bottom-right-radius: $radiuspx; } -#cloud-index tr { +.section-content-wrapper-np { background-color: $comment_item_colour; + border-bottom-left-radius: $radiuspx; + border-bottom-right-radius: $radiuspx; } [id^="cloud-index-"]:hover, .cloud-index-active { - background-color: $item_colour !important; + background-color: $item_colour; } /* bootstrap overrides */ -- cgit v1.2.3 From d801c361d6cd907ca841b58933a289dc4c5ccebe Mon Sep 17 00:00:00 2001 From: marijus Date: Mon, 29 Dec 2014 21:53:00 +0100 Subject: css fixes and remove sloppy photos setting since it is not supported anymore in redbasic --- view/theme/redbasic/tpl/theme_settings.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/tpl/theme_settings.tpl b/view/theme/redbasic/tpl/theme_settings.tpl index 70b42b6cd..adf2e632d 100644 --- a/view/theme/redbasic/tpl/theme_settings.tpl +++ b/view/theme/redbasic/tpl/theme_settings.tpl @@ -34,7 +34,7 @@ {{include file="field_input.tpl" field=$nav_min_opacity}} {{include file="field_input.tpl" field=$top_photo}} {{include file="field_input.tpl" field=$reply_photo}} -{{include file="field_checkbox.tpl" field=$sloppy_photos}} +{{*include file="field_checkbox.tpl" field=$sloppy_photos*}}