aboutsummaryrefslogtreecommitdiff
path: root/p/themes/Mapco/_global-view.scss
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-03-31 16:38:46 +0200
committerGravatar GitHub <noreply@github.com> 2019-03-31 16:38:46 +0200
commitd413f67dd28738f4a6d8cf036e00714737f757b8 (patch)
tree1509f631dc8814bcf85d907a292ddd6437a2efcd /p/themes/Mapco/_global-view.scss
parent8dcdde6251ae4dfc690b1a014488df125c5e5cdc (diff)
parent2a935516d850d63a215f9650b96ede102311f7ca (diff)
Merge pull request #2298 from FreshRSS/dev1.14.0
FreshRSS 1.14.0
Diffstat (limited to 'p/themes/Mapco/_global-view.scss')
-rw-r--r--p/themes/Mapco/_global-view.scss80
1 files changed, 80 insertions, 0 deletions
diff --git a/p/themes/Mapco/_global-view.scss b/p/themes/Mapco/_global-view.scss
new file mode 100644
index 000000000..30979bd6c
--- /dev/null
+++ b/p/themes/Mapco/_global-view.scss
@@ -0,0 +1,80 @@
+/*=== GLOBAL VIEW */
+/*================*/
+
+#stream{
+ .box.category{
+
+ &:not([data-unread="0"]) .box-title {
+ // background: #3498db;
+ }
+ &:not([data-unread="0"]) .box-title:active {
+ // background: #2980b9;
+ }
+ &:not([data-unread="0"]) .box-title .title {
+ font-weight: bold;
+ // color: #fff;
+ }
+
+ .box-title{
+ background: none;
+ padding: 1.5rem;
+
+ a.title{
+ font-weight: normal;
+ text-decoration: none;
+ text-align: left;
+ font-size: 1rem;
+ text-transform: uppercase;
+ letter-spacing: 1px;
+ color: $grey-dark;
+
+ &:not([data-unread="0"])::after {
+ position: absolute;
+ top: 1.75rem;
+ right: 0;
+ line-height: 1.5rem;
+ background: $grey-light;
+ border-radius: 12px;
+ padding: 0 0.75rem;
+ margin: -0.5rem 1rem 0 0;
+ text-align: center;
+ }
+ &:hover{
+ color: $main-first;
+ }
+ }
+ }
+
+ .box-content{
+ padding-bottom: 0.5rem;
+ .item.feed {
+ // padding: 2px 10px;
+ font-size: 1rem;
+ padding: 0.5rem 1.5rem;
+
+ a{
+ color: $main-font-color;
+ font-weight: 400;
+
+ &:hover{
+ color: $main-first;
+ text-decoration: none;
+ }
+ }
+ }
+ }
+ }
+}
+
+
+// le panel qui apparait en overlay pour afficher les flux
+#overlay{
+ background: rgba(0, 0, 0, 0.65);
+}
+#panel{
+ top: 3rem;
+ right: 3rem;
+ bottom: 3rem;
+ left: 3rem;
+ border-radius: 3px;
+}