Sort reverse option

This commit is contained in:
Mo Bitar
2018-12-13 12:19:18 -06:00
parent 24bfe5db30
commit c08a33fd57
9 changed files with 65 additions and 26 deletions

View File

@@ -11,14 +11,25 @@
Modified icons to fit ionicons grid from original.
*/
@font-face { font-family: "Ionicons"; src: url("../assets/ionicons.eot?v=2.0.0"); src: url("../assets/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"), url("../assets/ionicons.ttf?v=2.0.1") format("truetype"), url("../assets/ionicons.woff?v=2.0.1") format("woff"), url("../assets/ionicons.svg?v=2.0.1#Ionicons") format("svg"); font-weight: normal; font-style: normal; }
.ion, .ionicons, .ion-ios-box:before, .ion-bookmark:before, .ion-locked:before { display: inline-block; font-family: "Ionicons"; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; text-rendering: auto; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.ion, .ionicons,
.ion-ios-box:before,
.ion-bookmark:before,
.ion-locked:before,
.ion-arrow-return-left:before,
.ion-arrow-return-right:before
{
display: inline-block; font-family: "Ionicons"; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; text-rendering: auto; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
.ion-ios-box:before { content: "\f3ec"; }
.ion-locked:before { content: "\f200"; }
.ion-bookmark:before {
content: "\f26b";
}
.ion-bookmark:before { content: "\f26b"; }
.ion-arrow-return-left:before { content: "\f265"; }
.ion-arrow-return-right:before { content: "\f266"; }
/*# sourceMappingURL=ionicons.css.map */

View File

@@ -153,6 +153,17 @@
opacity: 0.6;
}
.note-flags {
display: flex;
flex-direction: row;
align-items: center;
.pinned, .archived {
color: var(--sn-stylekit-info-color);
margin-right: 10px;
}
}
progress {
background-color: var(--sn-stylekit-contrast-background-color);
color: var(--sn-stylekit-info-color);
@@ -170,7 +181,7 @@
background-color: var(--sn-stylekit-info-color);
color: var(--sn-stylekit-info-contrast-color);
.pinned {
.pinned, .archived {
color: var(--sn-stylekit-info-contrast-color);
}