ttrss/css/tt-rss.less

1254 lines
19 KiB
Plaintext
Raw Normal View History

2017-12-03 10:49:40 +01:00
body.ttrss_main {
background : @default-bg;
color : @default-fg;
2017-11-29 15:00:29 +01:00
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
2017-12-03 11:06:41 +01:00
overflow : hidden;
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
:focus {
outline: none;
}
2017-11-29 16:55:12 +01:00
div.post {
2017-12-03 10:49:40 +01:00
padding : 0px;
2018-12-06 14:35:57 +01:00
font-size : 13px;
2017-11-29 15:00:29 +01:00
div.header {
2017-12-03 10:49:40 +01:00
padding : 5px;
color : #909090;
border: 0px solid @border-default;
2017-12-03 10:49:40 +01:00
border-bottom-width: 1px;
background: @color-panel-bg;
2017-12-03 10:49:40 +01:00
2018-12-06 14:35:57 +01:00
.left, .right {
display : flex;
2017-12-03 10:49:40 +01:00
}
2018-12-06 14:35:57 +01:00
.row {
display : flex;
margin-bottom : 4px;
flex-wrap : nowrap;
align-items : center;
justify-content : space-between;
2017-12-03 10:49:40 +01:00
}
2018-12-06 14:35:57 +01:00
.comments {
flex-grow : 2;
2017-12-03 10:49:40 +01:00
}
2018-12-06 14:35:57 +01:00
.date {
white-space : nowrap;
}
img, i.material-icons {
2018-12-06 14:35:57 +01:00
margin : 0px 4px;
vertical-align: middle;
color : @color-icon;
2018-12-06 14:35:57 +01:00
}
2017-11-29 16:55:12 +01:00
2018-12-06 14:35:57 +01:00
.title {
flex-grow : 2;
font-size : 15px;
font-weight : 600;
text-rendering: optimizelegibility;
font-family : @fonts-ui-bold;
}
2017-12-03 10:49:40 +01:00
}
div.content {
2017-12-03 10:49:40 +01:00
padding : 10px;
font-size : 16px;
img,
video {
border-width : 0px;
max-width : 98%;
height: auto;
}
p {
hyphens: auto;
}
iframe {
min-width : 50%;
max-width : 98%;
}
}
2017-11-29 15:00:29 +01:00
}
.inline-player {
display : flex;
align-items : center;
audio {
margin-right : 8px;
}
}
2018-12-06 18:55:51 +01:00
.article-note {
2017-12-03 10:49:40 +01:00
background-color : #fff7d5;
margin : 5px;
border: 1px solid #e7d796;
color : #9a8c59;
2018-12-06 18:55:51 +01:00
display : flex;
align-items : center;
2017-12-03 10:49:40 +01:00
2018-12-06 18:55:51 +01:00
> * {
padding : 5px;
2017-12-03 10:49:40 +01:00
}
}
2018-12-06 18:55:51 +01:00
.article-note.editable {
cursor : pointer;
}
2017-12-03 10:49:40 +01:00
h1 {
font-size : 18px;
2017-11-29 15:00:29 +01:00
font-weight : 600;
text-rendering: optimizelegibility;
//font-family : @fonts-ui;
2017-11-29 15:00:29 +01:00
}
2017-12-03 10:49:40 +01:00
h2 {
font-size : 16px;
2017-12-03 10:49:40 +01:00
font-weight : 600;
text-rendering: optimizelegibility;
//font-family : @fonts-ui;
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
h3 {
2018-12-04 12:26:28 +01:00
font-size : 16px;
2017-12-03 10:49:40 +01:00
font-weight : 600;
text-rendering: optimizelegibility;
//font-family : @fonts-ui;
}
h4 {
font-size : 14px;
font-weight : 600;
text-rendering: optimizelegibility;
//font-family : @fonts-ui;
2017-12-03 10:49:40 +01:00
}
2017-11-29 16:55:12 +01:00
2017-12-03 10:49:40 +01:00
a {
color: @color-link;
text-decoration: none;
}
a:hover {
color: darken(@color-link, 20%);
text-decoration: underline;
}
#notify.visible {
opacity: 100;
2017-12-03 10:49:40 +01:00
}
#notify {
bottom : 20px;
right : 20px;
min-width : 200px;
max-width : 350px;
border-width : 1px;
2017-12-03 10:49:40 +01:00
border-style : solid;
position : fixed;
font-size : 14px;
2017-12-03 10:49:40 +01:00
z-index : 99;
display : flex;
opacity: 0;
align-items : center;
padding : 10px;
transition: opacity 0.2s linear;
box-shadow : 0px 0px 8px rgba(0,0,0,0.1);
2017-12-03 10:49:40 +01:00
img {
vertical-align : middle;
2017-11-29 16:55:12 +01:00
}
.msg {
flex-grow : 2;
padding : 0 10px;
line-height : 20px;
2017-11-29 16:55:12 +01:00
}
.icon-close {
2017-12-03 10:49:40 +01:00
cursor : pointer;
2017-11-29 16:55:12 +01:00
}
2017-11-29 15:00:29 +01:00
}
2017-12-03 10:49:40 +01:00
.notify {
border-color : #d7c47a;
background-color : #fff7d5;
2017-11-29 15:00:29 +01:00
}
2017-12-03 10:49:40 +01:00
.notify.notify_progress {
border-color : #d7c47a;
background-color : #fff7d5;
2017-11-29 15:00:29 +01:00
}
2017-12-03 10:49:40 +01:00
.notify.notify_info {
border-color : @color-accent;
background-color : @color-accent-light;
i.icon-notify {
color : @color-accent;
}
2017-11-29 15:00:29 +01:00
}
2017-12-03 10:49:40 +01:00
.notify.notify_error {
background-color : #c00;
border-color : #900;
color : white;
i.icon-notify, i.icon-close {
color : white;
}
2017-11-29 15:00:29 +01:00
}
.action-chooser {
.action-button {
.dijitButtonText {
vertical-align : unset;
}
.dijitArrowButtonInner {
display : none;
}
}
}
2017-12-03 10:49:40 +01:00
.hl {
border: 0px solid @border-default;
2017-12-03 10:49:40 +01:00
border-bottom-width: 1px;
transition : color 0.2s, background 0.2s;
display : flex;
flex-direction : row;
flex-wrap : nowrap;
background : @color-panel-bg;
align-items : center;
user-select : none;
2017-11-29 15:00:29 +01:00
> * {
2017-12-03 10:49:40 +01:00
white-space : nowrap;
2018-12-05 11:58:18 +01:00
padding : 4px;
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
img {
2017-12-03 10:49:40 +01:00
vertical-align : middle;
}
.left, .right {
2018-12-05 11:58:18 +01:00
display : flex;
align-items : center;
2018-12-05 11:58:18 +01:00
i.material-icons {
margin-left : 2px;
padding : 2px;
2018-12-05 12:11:40 +01:00
transition : color 0.2s linear;
user-select: none;
font-size : 21px;
2018-12-05 11:58:18 +01:00
}
}
.right {
i.material-icons {
color : @color-icon;
}
}
div.title {
cursor : pointer;
flex-grow : 2;
overflow : hidden;
text-overflow : ellipsis;
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
span.author {
white-space : nowrap;
color : @default-text;
font-size : 11px;
font-weight : normal;
}
div.right {
2017-12-03 10:49:40 +01:00
text-align : right;
}
2017-11-29 15:00:29 +01:00
span.feed a {
2017-12-03 10:49:40 +01:00
border-radius : 4px;
display : inline-block;
padding : 1px 4px;
2017-12-03 10:49:40 +01:00
font-size : 11px;
font-style : italic;
font-weight : normal;
color : @default-text;
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
span.feed a:hover {
2017-12-03 10:49:40 +01:00
color : @color-accent;
}
2017-11-29 15:00:29 +01:00
span.updated {
color : @default-text;
2017-12-03 10:49:40 +01:00
text-align : right;
font-size : 11px;
padding-left : 10px;
}
2017-11-29 15:00:29 +01:00
span.updated div {
2017-12-03 10:49:40 +01:00
display : inline-block;
}
2017-11-29 15:00:29 +01:00
div.left input {
margin : 0px 4px;
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
div.left img, div.right img {
2017-12-03 10:49:40 +01:00
margin : 0px 4px;
}
2017-11-29 15:00:29 +01:00
div.title a {
2017-12-03 10:49:40 +01:00
font-weight : 600;
text-rendering: optimizelegibility;
font-family : @fonts-ui;
color : #555;
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
a.title.high, span.hl-content.high .preview {
2017-12-03 10:49:40 +01:00
color : #00aa00;
}
}
2017-11-29 15:00:29 +01:00
.hl.vgrlf .feed {
display : none;
}
.hl.Unread {
background : white;
}
.hl.Unread div.title a {
2017-12-03 10:49:40 +01:00
color : black;
2017-11-29 16:55:12 +01:00
}
.hl.active div.title a {
2017-12-03 10:49:40 +01:00
color : @color-accent;
/* text-shadow : 1px 1px 2px #fff; */
2017-11-29 16:55:12 +01:00
}
2017-12-13 17:09:14 +01:00
.hl.active {
background : @color-accent ! important;
}
2017-12-13 16:53:31 +01:00
.hl.active,
2017-12-03 10:49:40 +01:00
.hl.Selected {
2017-12-13 16:53:31 +01:00
color : white;
background : desaturate(@color-accent, 25%);
2017-12-13 16:53:31 +01:00
a,
.feed a,
.hl-content a.title,
2017-12-13 16:53:31 +01:00
span {
color : white;
}
2017-11-29 16:55:12 +01:00
}
2017-12-03 10:49:40 +01:00
.hl.Grayed {
color : #909090;
2017-11-29 16:55:12 +01:00
}
2017-12-03 10:49:40 +01:00
#content-insert blockquote,
#headlines-frame blockquote,
.dijitContentPane blockquote {
margin : 5px 0px 5px 0px;
color : @default-text;
2017-11-29 16:55:12 +01:00
padding-left : 10px;
2017-12-03 10:49:40 +01:00
border: 0px solid #ccc;
border-left-width: 4px;
2017-11-29 16:55:12 +01:00
}
2017-12-03 10:49:40 +01:00
#content-insert code,
#headlines-frame code,
.dijitContentPane code {
color : #009900;
font-family : monospace;
2017-11-29 16:55:12 +01:00
}
2017-12-03 10:49:40 +01:00
#content-insert pre,
#headlines-frame pre,
.dijitContentPane pre {
margin: 5px 0px 5px 0px;
padding: 10px;
color: @default-text;
2017-12-03 10:49:40 +01:00
font-family: monospace;
font-size: 12px;
border: 0px solid #ccc;
background: @color-panel-bg;
2017-12-03 10:49:40 +01:00
display: block;
max-width: 98%;
overflow: auto;
2017-11-29 16:55:12 +01:00
}
2017-12-03 10:49:40 +01:00
div.prefHelp {
color : @default-text;
2017-12-03 10:49:40 +01:00
padding : 5px;
}
2017-11-29 15:00:29 +01:00
span.preview {
2017-11-29 15:00:29 +01:00
color : #999;
2017-12-03 10:49:40 +01:00
font-weight : normal;
2017-11-29 15:00:29 +01:00
font-size : 12px;
2017-12-03 10:49:40 +01:00
padding-left : 4px;
2017-11-29 15:00:29 +01:00
}
2018-12-10 19:39:12 +01:00
.label {
display : inline-block;
2018-12-10 19:39:12 +01:00
vertical-align: middle;
2017-12-03 10:49:40 +01:00
background-color : #fff7d5;
2018-12-10 19:39:12 +01:00
font-size : 9px;
color : @default-fg;
2017-12-03 10:49:40 +01:00
font-weight : normal;
margin-left : 2px;
padding : 2px 4px;
2017-12-03 10:49:40 +01:00
white-space: nowrap;
}
2017-11-29 15:00:29 +01:00
2018-12-05 11:58:18 +01:00
i.marked-pic, i.pub-pic {
2017-12-03 10:49:40 +01:00
cursor : pointer;
color : #ccc;
2017-11-29 15:00:29 +01:00
}
2017-12-03 10:49:40 +01:00
div.errorExplained {
border : 1px solid @border-default;
2017-12-03 10:49:40 +01:00
margin : 5px 0px 5px 0px;
padding : 5px;
2017-11-29 15:00:29 +01:00
}
2017-12-03 10:49:40 +01:00
ul.browseFeedList {
height : 300px;
2018-12-04 20:24:31 +01:00
width : 100%;
2017-12-03 10:49:40 +01:00
overflow : auto;
border-width : 0px 1px 1px 1px;
border-color : @border-default;
2017-12-03 10:49:40 +01:00
border-style : solid;
margin : 0px 0px 5px 0px;
background-color : white;
list-style-type : none;
padding : 0px;
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
li {
2018-12-05 12:21:47 +01:00
display : flex;
align-items : center;
2018-12-05 12:21:47 +01:00
> * {
margin : 2px;
}
2017-12-03 10:49:40 +01:00
}
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
.browseFeedList span.subscribers {
color : #808080;
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
ul.compact {
list-style-type : none;
margin : 0px;
padding : 0px;
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
li {
margin : 0px;
padding : 0px;
}
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
.noborder {
border-width : 0px;
2017-11-29 15:00:29 +01:00
}
2017-12-03 10:49:40 +01:00
#overlay {
background : @default-bg;
2017-12-03 10:49:40 +01:00
left : 0;
top : 0;
height : 100%;
width : 100%;
z-index : 100;
position : absolute;
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
#overlay_inner {
font-weight : bold;
margin : 1em;
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
div.loadingPrompt {
padding : 1em;
text-align : center;
font-weight : bold;
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
div.whiteBox {
margin-left : 1px;
text-align : center;
padding : 1em 1em 0px 1em;
font-size : 11px;
border: 0px solid @border-default;
2017-12-03 10:49:40 +01:00
border-bottom-width: 1px;
}
2017-11-29 15:00:29 +01:00
div#headlines-frame.wide {
.title {
overflow: visible;
white-space: normal;
}
2017-11-29 15:00:29 +01:00
.hl .feed {
display: none;
}
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
2019-02-20 12:37:59 +01:00
.dijitDialog {
2017-11-29 15:00:29 +01:00
header,
2019-02-20 12:37:59 +01:00
.dlgSec, .dlgSecHoriz {
font-size : 16px;
font-weight : 600;
color : @default-text;
font-family: @fonts-ui-bold;
}
section,
2019-02-20 12:37:59 +01:00
.dlgSecCont {
margin : 10px 20px;
}
2017-11-29 15:00:29 +01:00
header.horizontal + section,
2019-02-20 12:58:09 +01:00
.dlgSecHoriz + .dlgSecCont {
margin : 10px 0;
}
section.narrow {
margin : 0;
2019-02-20 12:58:09 +01:00
}
section,
2019-02-20 12:37:59 +01:00
div.dlgSecCont, div.dlgSecSimple {
fieldset {
> label {
font-weight : bold;
margin-right : 10px;
display : inline-block;
min-width : 140px;
text-align : right;
}
> label.checkbox {
font-weight : normal;
display : inline;
}
2019-02-22 10:13:41 +01:00
> label.inline {
display : inline;
}
2019-02-20 12:37:59 +01:00
}
2017-12-03 10:49:40 +01:00
2019-02-20 12:37:59 +01:00
fieldset {
border-width : 0px;
padding : 5px 0px;
}
2017-11-29 15:00:29 +01:00
2019-02-20 12:37:59 +01:00
fieldset.narrow {
padding : 2px 0px;
}
fieldset.align-right {
text-align : right;
}
}
2017-11-29 15:00:29 +01:00
footer,
2018-12-04 20:24:31 +01:00
.dlgButtons {
2019-02-20 12:37:59 +01:00
margin-top : 5px;
2018-12-04 20:24:31 +01:00
text-align: right;
}
footer.text-center {
text-align: center;
2018-12-04 20:24:31 +01:00
}
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
2018-12-06 06:26:52 +01:00
i.icon-label {
color : #fff7d5;
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
div#cmdline {
position : absolute;
left : 5px;
bottom : 5px;
font-size : 11px;
color : @default-text;
2017-12-03 10:49:40 +01:00
font-weight : bold;
background-color : @default-bg;
2017-12-03 10:49:40 +01:00
border : 1px solid @color-accent;
padding : 3px 5px 3px 5px;
z-index : 5;
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
#feed_browser_spinner {
vertical-align : middle;
height : 18px;
width : 18px;
}
2017-11-29 15:00:29 +01:00
#exceptionDlg {
.dijitDialogTitleBar {
background : red;
color : white;
2017-12-03 10:49:40 +01:00
}
2017-11-29 16:55:12 +01:00
.dijitDialogPaneContent {
background : #fcc;
2017-12-03 10:49:40 +01:00
}
.error-contents {
.message {
color : red;
}
textarea {
width : 99%;
height : 200px;
}
.dlgButtons {
text-align : center;
}
2018-12-11 10:45:05 +01:00
}
2017-11-29 16:55:12 +01:00
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
#content-wrap {
padding : 0px;
border-width : 0px;
margin : 0px;
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
#feeds-holder {
padding : 0px;
border: 0px solid @border-default;
2017-12-03 10:49:40 +01:00
overflow : hidden;
background : @color-panel-bg;
2017-12-03 10:49:40 +01:00
box-shadow : inset -1px 0px 2px -1px rgba(0,0,0,0.1);
-webkit-overflow-scrolling : touch;
2017-12-03 15:57:34 +01:00
#feedTree {
height : 100%;
overflow-x : hidden;
text-rendering: optimizelegibility;
2018-12-04 18:17:50 +01:00
font-family : @fonts-ui;
2017-12-03 15:57:34 +01:00
.counterNode.aux {
background : @color-panel-bg;
color : lighten(@default-text, 10%);
border-color : darken(@color-panel-bg, 10%);
2017-12-03 15:57:34 +01:00
}
.counterNode {
font-weight : bold;
display : inline-block;
font-size : 9px;
text-align : center;
border : 1px solid lighten(@color-accent, 5%);;
2017-12-03 15:57:34 +01:00
color : white;
background : lighten(@color-accent, 5%);
2017-12-03 15:57:34 +01:00
border-radius : 4px;
vertical-align : middle;
float : right;
position : relative;
line-height : 14px;
margin-right : 8px;
margin-top : 2px;
min-width : 23px;
height : 14px;
}
.dijitTreeNode .loadingExpando {
left : -3px;
height : 22px;
position : relative;
top : -3px;
2018-12-04 18:17:50 +01:00
}
.dijitTreeRow .dijitTreeLabel.Unread {
font-weight : bold;
}
.dijitTreeRow.Error .dijitTreeLabel {
color : red;
}
.dijitTreeNode .dijitTreeRow {
border : 1px solid transparent;
}
.dijitTreeNode .dijitTreeRowSelected {
box-shadow : -1px 0px 2px -1px rgba(0,0,0,0.1);
border-color : @border-default transparent;
background : @default-bg;
2018-12-06 06:26:52 +01:00
color : #333;
2018-12-04 18:17:50 +01:00
}
2019-02-24 13:03:35 +01:00
.dijitIcon.feed-icon {
margin-right : 2px;
}
i.icon.icon-inbox {
color : #555;
}
i.icon.icon-archive {
color : #c77b2e;
}
i.icon.icon-star {
2019-03-19 06:29:43 +01:00
position : relative;
color : @color-marked;
font-size : 21px;
2019-03-19 06:29:43 +01:00
left : -2px;
}
i.icon.icon-rss_feed {
color : @color-published;
}
2018-12-06 11:18:14 +01:00
i.icon.icon-whatshot {
color : @color-checked;
}
i.icon.icon-restore {
2019-03-19 06:29:43 +01:00
position : relative;
top : -1px;
font-weight : bold;
color : @color-accent;
}
2017-12-03 15:57:34 +01:00
}
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
#headlines-wrap-inner {
padding : 0px;
margin : 0px;
border-width : 0px;
}
2017-11-29 15:00:29 +01:00
#headlines-frame[is-vfeed="0"] .header .feed {
display : none;
}
2017-12-03 10:49:40 +01:00
#headlines-frame {
padding : 0px;
border: 0px @border-default;
2017-12-03 10:49:40 +01:00
margin-top : 0px;
-webkit-overflow-scrolling : touch;
-webkit-transform: translateZ(0);
-webkit-backface-visibility: hidden;
div.feed-title {
border: 0px solid @color-link;
border-bottom-width: 1px;
padding: 5px 8px;
}
div.feed-title a.title {
color: @default-text;
font-weight: bold;
}
div.feed-title a {
color: @default-text;
}
div.feed-title a:hover {
color: @color-link;
}
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
#toolbar-frame_splitter {
2017-12-03 10:49:40 +01:00
display : none;
2017-11-29 16:55:12 +01:00
}
2017-11-29 15:00:29 +01:00
#toolbar-frame {
2017-12-03 10:49:40 +01:00
padding : 0px;
margin : 0px;
border-width : 0px;
white-space: nowrap;
font-size : 12px;
#toolbar {
background : white;
border: 0px solid @border-default;
border-bottom-width: 1px;
2018-12-06 05:35:41 +01:00
padding-left : 4px;
height : 32px;
display : flex;
flex-direction : row;
flex-wrap : nowrap;
color : @default-text;
font-size : 12px;
align-items : center;
.dijitSelect,
.dijitDropDownButton .dijitButtonNode,
.dijitComboButton .dijitButtonNode {
border : 0px;
}
i.net-alert, .left i.icon-error {
color : red;
}
i.log-alert {
2018-12-10 08:53:11 +01:00
color : #ddba1c;
}
#toolbar-headlines {
padding-right : 4px;
flex-grow : 2;
display : flex;
.left {
flex-grow: 2;
2018-12-05 08:10:39 +01:00
display : flex;
align-items : center;
img {
vertical-align : middle;
margin-right : 8px;
2018-12-05 08:10:39 +01:00
}
}
.right {
display : flex;
align-items : center;
}
}
#updates-available {
color : @color-checked;
padding-right : 4px;
}
#selected_prompt {
font-style : italic;
text-align : right;
margin-right : 4px;
2018-12-09 03:50:10 +01:00
color : @color-accent;
}
@media (max-width: 992px) {
#selected_prompt {
display : none;
}
}
}
2017-11-29 16:55:12 +01:00
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
#header {
border-width : 0px;
text-align : right;
color : @default-text;
2017-12-03 10:49:40 +01:00
padding : 5px 5px 0px 0px;
margin : 0px;
position : absolute;
right : 0px;
top : 0px;
z-index : 5;
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
#content-insert {
padding : 0px;
border-color : @border-default;
2017-12-03 10:49:40 +01:00
border-width : 0px;
line-height: 1.5;
overflow : auto;
-webkit-overflow-scrolling : touch;
}
2017-11-29 15:00:29 +01:00
img.feed-icon, img.icon {
2017-12-03 10:49:40 +01:00
width : 16px;
height : 16px;
line-height : 16px;
vertical-align : middle;
display : inline-block;
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
.player {
display : inline-block;
color : @default-text;
2017-12-03 10:49:40 +01:00
font-size : 11px;
font-family : sans-serif;
border : 1px solid @default-text;
2017-12-03 10:49:40 +01:00
padding : 0px 4px 0px 4px;
margin : 0px 2px 0px 2px;
width : 50px;
text-align : center;
background : @default-bg;
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
.player.playing {
color : #00c000;
border-color : #00c000;
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
.player:hover {
background : @color-panel-bg;
2017-12-03 10:49:40 +01:00
cursor : pointer;
}
2017-11-29 15:00:29 +01:00
#headlines-frame.auto_catchup #headlines-spacer {
2017-12-03 10:49:40 +01:00
height : 100%;
}
#headlines-spacer {
2017-12-03 10:49:40 +01:00
margin-left : 1px;
text-align : center;
color : @default-text;
2017-12-03 10:49:40 +01:00
font-size : 11px;
font-style : italic;
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
a, span {
color : @default-text;
2017-12-03 10:49:40 +01:00
padding : 10px;
display : block;
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
a:hover {
color : @color-accent;
}
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
ul#filterDlg_Matches, ul#filterDlg_Actions {
max-height : 100px;
overflow : auto;
list-style-type : none;
border-style : solid;
border-color : @border-default;
2018-12-04 20:24:31 +01:00
border-width : 1px 1px 1px 1px;
background-color : @default-bg;
2017-12-03 10:49:40 +01:00
margin : 0px 0px 5px 0px;
2018-12-04 20:24:31 +01:00
padding : 4px;
min-height : 16px;
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
ul#filterDlg_Matches li, ul#filterDlg_Actions li {
cursor : pointer;
2018-12-04 18:17:50 +01:00
}
ul#filterDlg_Matches li .dijitCheckBox, ul#filterDlg_Actions li .dijitCheckBox {
margin-right: 4px;
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
2018-12-10 06:37:24 +01:00
ul.hotkeys-help {
li {
display : flex;
}
li.desc {
flex-grow : 2;
}
2017-11-29 15:00:29 +01:00
2018-12-10 06:37:24 +01:00
.hk {
2017-12-03 10:49:40 +01:00
color : @color-accent;
2018-12-10 06:37:24 +01:00
width : 100px;
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
2018-12-10 06:37:24 +01:00
h3 {
margin : 8px 0px;
2017-12-03 10:49:40 +01:00
}
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
select.attachments {
2017-11-29 16:55:12 +01:00
display : block;
2017-12-03 10:49:40 +01:00
margin-top : 10px;
max-width : 120px;
2017-11-29 16:55:12 +01:00
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
#filterDlg_feeds select {
height : 150px;
width : 410px;
2017-11-29 16:55:12 +01:00
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
span.highlight {
background-color : #ffff00;
color : #cc90cc;
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
div.enclosure_title {
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
2018-12-04 18:17:50 +01:00
#headlines-frame .dijitCheckBox {
margin-right : 4px;
2017-12-03 10:49:40 +01:00
}
2017-11-29 15:00:29 +01:00
2017-12-03 10:49:40 +01:00
#editTagsDlg{
overflow: visible;
}
#feedEditDlg img.feedIcon {
border : 1px solid #ccc;
padding : 5px;
margin : 5px;
max-width : 20px;
max-height : 20px;
height : auto;
width : auto;
}
2017-11-29 16:55:12 +01:00
}
body.ttrss_main .dijitDialog {
h1:first-of-type,
h2:first-of-type,
h3:first-of-type,
h4:first-of-type {
margin-top: 0px;
}
}
body.ttrss_main {
i.icon-syndicate {
color : @color-published;
margin-right : 8px;
border : 1px solid @color-published;
border-radius : 4px;
}
i.icon-no-feed {
opacity : 0.2;
}
.dijitTreeRow.UpdatesDisabled .dijitTreeLabel {
opacity : 0.5;
}
2018-12-07 06:59:53 +01:00
#floatingTitle.marked i.marked-pic,
.cdm.marked .left i.marked-pic,
.hl.marked .left i.marked-pic {
color : @color-marked;
}
2018-12-05 12:11:40 +01:00
2018-12-07 06:59:53 +01:00
#floatingTitle.published i.pub-pic,
.cdm.published .left i.pub-pic,
.hl.published .left i.pub-pic {
color : @color-published;
}
2018-12-05 11:58:18 +01:00
.score-high i.icon-score {
color : @color-checked;
}
.score-low i.icon-score {
color : #500;
}
.score-neutral i.icon-score {
opacity : 0.5;
}
i.icon-score {
cursor : pointer;
}
.panel {
border : 1px solid @border-default;
background : @color-panel-bg;
padding : 4px;
}
.dijitDialog .panel {
background : @default-bg;
}
.panel-scrollable {
overflow : auto;
height : 200px;
}
ul.list li {
padding : 2px;
}
ul.list {
padding : 4px;
}
ul.list-unstyled {
list-style-type : none;
}
.text-center {
text-align : center;
}
#prefFilterTestResultList {
.preview {
margin : 8px;
}
.title {
font-weight: bold;
}
.feed {
color : @color-accent;
}
}
2018-12-05 11:58:18 +01:00
}
2019-02-19 12:59:29 +01:00
body.ttrss_main, body.ttrss_utility {
.alert {
padding: 8px 35px 8px 14px;
margin-bottom: 10px;
/* text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); */
background-color: #fcf8e3;
border: 1px solid #fbeed5;
border-radius: 4px;
.close {
position: relative;
top: -2px;
right: -21px;
line-height: 20px;
cursor : pointer;
}
}
2019-03-01 10:41:57 +01:00
.pull-right {
float : right;
}
.pull-left {
float : left;
}
.text-error {
color: #b94a48;
}
.text-info {
color: #3a87ad;
}
.text-success {
color: #468847;
}
.text-warning {
color: darken(#c09853, 10%);
}
2019-02-19 12:59:29 +01:00
.alert,
.alert h4 {
color: #c09853;
}
.alert h4 {
margin: 0;
}
.alert-success {
color: #468847;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.alert-success h4 {
color: #468847;
}
.alert-danger,
.alert-error {
color: #b94a48;
background-color: #f2dede;
border-color: #eed3d7;
}
.alert-danger h4,
.alert-error h4 {
color: #b94a48;
}
.alert-info {
color: #3a87ad;
background-color: #d9edf7;
border-color: #bce8f1;
h4 {
color: #3a87ad;
}
}
hr {
border: 0px solid #ccc;
border-bottom-width: 1px;
}
2019-03-08 08:11:57 +01:00
.text-muted {
2019-02-20 11:05:12 +01:00
color : @default-text;
}
.small {
font-size : 11px;
}
div.autocomplete {
position : absolute;
width : 250px;
background-color : @default-bg;
border :1px solid @border-default;
margin : 0px;
padding : 0px;
ul {
list-style-type : none;
margin : 0px;
padding : 0px;
}
ul li.selected {
background-color : darken(@default-bg, 10%);
}
ul li {
list-style-type : none;
display : block;
margin : 0;
padding : 2px;
cursor : pointer;
}
}
2019-02-19 12:59:29 +01:00
}
2017-12-13 13:54:08 +01:00
::selection {
background : @color-accent;
color : @default-bg;
}
2018-12-04 11:01:50 +01:00
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar-thumb {
background-color: @color-accent;
}
::-webkit-scrollbar-track {
background-color: #eee;
}
video::-webkit-media-controls-overlay-play-button {
display: none;
2019-02-19 12:27:53 +01:00
}
2019-02-19 12:59:29 +01:00