1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-01 12:40:50 +02:00
ttrss/css/tt-rss.css

1187 lines
19 KiB
CSS
Raw Normal View History

body#ttrssMain, body#ttrssPrefs, body#ttrssLogin, body {
background : white;
color : black;
margin : 0px;
padding : 0px;
2013-05-11 12:10:51 +02:00
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
2005-08-21 12:13:10 +02:00
}
2014-11-03 08:54:54 +01:00
body#ttrssMain {
overflow : hidden;
2014-11-05 07:18:41 +01:00
max-height : 100%;
2014-11-03 08:54:54 +01:00
}
2005-09-07 09:19:14 +02:00
div.postReply {
2007-08-10 05:29:56 +02:00
padding : 0px;
2005-08-21 12:13:10 +02:00
}
2005-09-07 09:19:14 +02:00
div.postReply div.postHeader {
2007-08-10 05:29:56 +02:00
padding : 5px;
2014-01-27 20:21:26 +01:00
margin-right : 4px;
2009-01-19 10:51:51 +01:00
color : #909090;
2014-01-28 11:21:32 +01:00
border-width : 0px 0px 1px 0px;
2014-01-28 12:40:33 +01:00
border-color : #ddd;
2014-01-27 20:21:26 +01:00
border-style : solid;
2005-12-20 16:53:43 +01:00
}
div.postReply div.postTitle {
overflow : hidden;
text-overflow: ellipsis;
white-space : nowrap;
font-weight : 600;
text-rendering: optimizelegibility;
font-family : "Segoe WP Semibold", "Segoe UI Semibold",
2017-06-24 13:33:29 +02:00
"Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue",
Helvetica, Arial, sans-serif;
}
div.postReply div.postDate {
padding-left : 10px;
}
2005-09-07 09:19:14 +02:00
div.postReply div.postContent {
padding : 10px;
2017-01-25 09:22:53 +01:00
font-size : 16px;
}
div.postReply div.postContent img,
div.postReply div.postContent video {
2007-05-19 09:37:22 +02:00
border-width : 0px;
max-width : 98%;
height: auto;
2007-05-19 09:37:22 +02:00
}
div.postReply div.postEnclosures {
color : #555;
}
2007-08-11 18:28:04 +02:00
div.postReply img.tagsPic {
width : 16px;
height : 16px;
margin-left : 4px;
2007-08-11 18:28:04 +02:00
vertical-align : middle;
}
div.articleNote {
background-color : #fff7d5;
padding : 5px;
2013-05-12 22:25:15 +02:00
margin : 5px;
border-style : solid;
border-color : #e7d796;
border-width : 1px;
color : #9a8c59;
}
div.articleNote div.noteEdit {
float : right;
cursor : pointer;
}
div.postReply span.author {
2010-01-13 09:37:02 +01:00
font-size : 12px;
}
2007-08-11 18:28:04 +02:00
2005-09-07 09:19:14 +02:00
h1 {
2008-05-18 07:40:21 +02:00
font-size : 18px;
font-weight : 600;
text-rendering: optimizelegibility;
font-family : "Segoe WP Semibold", "Segoe UI Semibold",
2017-06-24 13:33:29 +02:00
"Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue",
Helvetica, Arial, sans-serif;
}
2005-09-07 09:19:14 +02:00
h2 {
2008-05-18 07:40:21 +02:00
font-size : 16px;
font-weight : 600;
border-width : 0px 0px 1px 0px;
border-style : solid;
border-color : #ecf4ff;
text-rendering: optimizelegibility;
font-family : "Segoe WP Semibold", "Segoe UI Semibold",
2017-06-24 13:33:29 +02:00
"Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue",
Helvetica, Arial, sans-serif;
2005-08-21 12:13:10 +02:00
}
2005-10-28 19:58:20 +02:00
h3 {
2014-01-29 13:53:42 +01:00
font-size : 13px;
border-width : 0px 0px 1px 0px;
border-style : solid;
border-color : #ecf4ff;
font-weight : 600;
text-rendering: optimizelegibility;
font-family : "Segoe WP Semibold", "Segoe UI Semibold",
2017-06-24 13:33:29 +02:00
"Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue",
Helvetica, Arial, sans-serif;
2005-10-28 19:58:20 +02:00
}
2014-01-29 13:53:42 +01:00
h4 {
font-size : 14px;
font-weight : 600;
text-rendering: optimizelegibility;
font-family : "Segoe WP Semibold", "Segoe UI Semibold",
2017-06-24 13:33:29 +02:00
"Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue",
2014-01-29 13:53:42 +01:00
Helvetica, Arial, sans-serif;
}
2005-09-07 09:19:14 +02:00
hr {
border-width : 0px 0px 1px 0px;
2013-05-07 16:44:17 +02:00
border-style : solid;
2014-01-27 16:03:35 +01:00
border-color : #ccc;
2005-09-07 09:19:14 +02:00
}
2005-08-21 18:23:19 +02:00
2005-09-07 09:19:14 +02:00
a {
2015-08-12 15:58:06 +02:00
color: #0088cc;
text-decoration: none;
2005-08-21 12:13:10 +02:00
}
2015-08-13 22:07:45 +02:00
a:hover {
2015-08-12 15:58:06 +02:00
color: #005580;
text-decoration: underline;
2005-08-26 09:05:16 +02:00
}
2005-09-07 09:19:14 +02:00
#piggie {
2006-08-12 16:57:13 +02:00
z-index : 999;
position : absolute;
2005-08-26 09:05:16 +02:00
}
#notify.visible {
transform: translate(0, -35px);
-webkit-transform: translate(0, -35px);
-o-transform: translate(0, -35px);
-moz-transform: translate(0, -35px);
}
2006-10-01 11:08:55 +02:00
#notify {
bottom : -35px;
right : 0px;
height : 20px;
left : 0px;
border-width : 1px 0px 0px 0px;
2006-10-01 11:08:55 +02:00
border-style : solid;
2014-11-05 07:18:41 +01:00
position : fixed;
2013-04-17 08:50:46 +02:00
font-size : 12px;
2010-11-19 14:08:02 +01:00
z-index : 99;
2013-03-27 19:24:26 +01:00
padding : 5px;
box-shadow : 0px -2px 2px rgba(0,0,0,0.1);
2014-11-09 18:31:29 +01:00
transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
2005-08-21 12:13:10 +02:00
}
#notify img {
vertical-align : middle;
2013-04-17 08:50:46 +02:00
max-height : 14px;
}
#notify span.msg {
width : 100%;
}
#notify img.close {
cursor : pointer;
2013-04-17 08:50:46 +02:00
}
#notify span {
display : table-cell;
vertical-align : middle;
2017-05-06 09:56:10 +02:00
padding : 2px;
}
2013-03-27 19:24:26 +01:00
.notify {
2007-03-02 20:58:58 +01:00
border-color : #d7c47a;
background-color : #fff7d5;
}
.notify.notify_progress {
2006-10-01 11:08:55 +02:00
border-color : #d7c47a;
background-color : #fff7d5;
}
.notify.notify_info {
2015-08-12 15:58:06 +02:00
border-color : rgb(82, 168, 236);
2013-03-27 19:24:26 +01:00
background-color : #ecf4ff;
}
.notify.notify_error {
2006-10-01 11:08:55 +02:00
background-color : #ffcccc;
border-color : #ff0000;
}
2013-05-07 16:44:17 +02:00
.hl div.hlTitle a {
font-weight : 600;
text-rendering: optimizelegibility;
font-family : "Segoe WP Semibold", "Segoe UI Semibold",
2017-06-24 13:33:29 +02:00
"Segoe UI Web Semibold", "Segoe UI", Ubuntu, "Helvetica Neue",
Helvetica, Arial, sans-serif;
color : #777;
2013-05-07 16:44:17 +02:00
}
.hl.Unread div.hlTitle a {
color : black;
}
.hl.active div.hlTitle a {
2015-08-12 15:58:06 +02:00
color : rgb(82, 168, 236);
2014-01-31 11:46:51 +01:00
/* text-shadow : 1px 1px 2px #fff; */
}
.hl.Selected {
background : #f9fbff;
}
.hl.Grayed {
color : #909090;
}
.hl {
2013-05-07 16:44:17 +02:00
border-width : 0px 0px 1px 0px;
border-style : solid;
2014-01-28 12:40:33 +01:00
border-color : #ddd;
padding : 1px;
}
.hl.active {
background : #ecf4ff ! important;
}
div.filterTestHolder {
2010-11-21 12:11:48 +01:00
height : 300px;
2006-10-04 07:40:00 +02:00
overflow : auto;
2014-01-28 12:40:33 +01:00
border-color : #ddd;
2010-11-18 20:26:04 +01:00
border-style : solid;
margin : 0px 0px 5px 0px;
border-width : 1px;
2010-11-21 16:01:14 +01:00
}
#content-insert blockquote, #headlines-frame blockquote, .dijitContentPane blockquote {
2013-02-28 16:16:27 +01:00
margin : 5px 0px 5px 0px;
color : #555;
padding-left : 10px;
border-width : 0px 0px 0px 4px;
2014-01-27 21:04:36 +01:00
border-color : #ccc;
border-style : solid;
}
#content-insert code, #headlines-frame code, .dijitContentPane code {
2013-02-28 16:24:20 +01:00
color : #009900;
2010-11-23 09:41:21 +01:00
font-family : monospace;
font-size : 12px;
2013-02-28 16:24:20 +01:00
}
#content-insert pre, #headlines-frame pre, .dijitContentPane pre {
2015-08-11 17:37:07 +02:00
margin: 5px 0px 5px 0px;
padding: 10px;
color: #555;
font-family: monospace;
font-size: 12px;
border-width: 0px;
border-color: #ccc;
border-style: solid;
background: #f5f5f5;
display: block;
max-width: 98%;
overflow: auto;
2010-11-23 09:41:21 +01:00
}
2015-08-11 17:37:07 +02:00
.alert {
padding: 8px 35px 8px 14px;
margin-bottom: 10px;
2015-08-11 17:37:07 +02:00
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
background-color: #fcf8e3;
border: 1px solid #fbeed5;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
2013-03-27 19:03:52 +01:00
}
2015-08-11 17:37:07 +02:00
.alert,
.alert h4 {
color: #c09853;
}
2015-08-11 17:37:07 +02:00
.alert h4 {
margin: 0;
}
2015-08-11 17:37:07 +02:00
.alert .close {
position: relative;
top: -2px;
right: -21px;
line-height: 20px;
cursor : pointer;
}
2015-08-11 17:37:07 +02:00
.alert-success {
color: #468847;
background-color: #dff0d8;
border-color: #d6e9c6;
2013-03-27 19:03:52 +01:00
}
2015-08-11 17:37:07 +02:00
.alert-success h4 {
color: #468847;
2013-04-18 20:27:05 +02:00
}
2015-08-11 17:37:07 +02:00
.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;
}
2013-04-18 20:27:05 +02:00
2015-08-11 17:37:07 +02:00
.alert-info h4 {
color: #3a87ad;
2006-10-04 15:38:18 +02:00
}
ul.nomarks {
list-style-type : none;
margin : 0px;
padding : 10px;
}
2013-03-19 12:10:26 +01:00
div.prefHelp {
color : #555;
2006-09-30 08:57:01 +02:00
padding : 5px;
2005-11-20 11:14:38 +01:00
}
2008-05-16 08:05:12 +02:00
.insensitive {
color : #555;
2005-11-20 11:36:00 +01:00
}
2015-01-19 13:46:15 +01:00
.small {
font-size : 11px;
}
2005-11-23 10:48:23 +01:00
2014-01-27 19:03:42 +01:00
#main-toolbar > * {
white-space : nowrap;
display : table-cell;
color : #999;
2014-01-28 20:51:59 +01:00
}
#main-toolbar > *,
2014-01-28 20:56:10 +01:00
#main-toolbar table *,
#main-toolbar .actionChooser * {
text-rendering: optimizelegibility;
2017-06-24 13:33:29 +02:00
font-family : "Segoe WP", "Segoe UI Web", "Segoe UI", Ubuntu, "Helvetica Neue",
Helvetica, Arial, sans-serif;
font-size : 12px;
2014-01-28 20:51:59 +01:00
}
2014-01-27 19:03:42 +01:00
#main-toolbar #headlines-toolbar {
padding-right : 4px;
width : 100%;
}
#main-toolbar #headlines-toolbar span.holder {
display : table;
width : 100%;
2010-11-15 19:49:00 +01:00
}
2014-01-27 19:03:42 +01:00
#main-toolbar #headlines-toolbar span.holder > * {
display : table-cell;
}
#main-toolbar #headlines-toolbar .main {
2010-11-15 19:49:00 +01:00
text-align : right;
2014-01-27 19:03:42 +01:00
}
2014-01-28 20:51:59 +01:00
#main-toolbar #headlines-toolbar .main,
#main-toolbar #headlines-toolbar .r {
line-height : 24px;
}
2014-01-27 19:03:42 +01:00
#headlines-toolbar span.r img {
margin-right : 4px;
position : relative;
top : 3px;
}
2011-12-20 19:38:25 +01:00
#headlines-toolbar span.r .error a {
2011-12-20 19:38:25 +01:00
color : red;
}
2011-12-20 19:38:25 +01:00
2014-01-27 19:03:42 +01:00
#main-toolbar #selected_prompt {
font-style : italic;
2014-01-27 20:21:26 +01:00
text-align : right;
margin-right : 4px;
2006-03-22 08:49:21 +01:00
}
@media (max-width: 992px) {
#main-toolbar #selected_prompt {
display : none;
}
}
span.contentPreview {
color : #999;
font-weight : normal;
2014-01-31 11:46:51 +01:00
font-size : 12px;
padding-left : 4px;
2005-11-27 17:23:27 +01:00
}
2010-11-13 12:04:37 +01:00
span.hlLabelRef {
background-color : #fff7d5;
2012-02-06 12:20:03 +01:00
font-size : 8px;
color : #063064;
font-weight : normal;
2013-05-07 16:54:21 +02:00
margin-left : 2px;
padding : 1px 4px 1px 4px;
display : inline-block;
vertical-align : middle;
white-space: nowrap;
2014-01-27 16:03:35 +01:00
border-radius : 4px;
}
2006-12-07 10:57:09 +01:00
div.postHeader div.postDate {
text-align : right;
2013-07-30 23:22:13 +02:00
color : #909090;
2006-12-07 10:57:09 +01:00
float : right;
}
2006-12-07 10:57:09 +01:00
div.postHeader div {
padding-bottom : 3px;
2006-03-23 08:24:06 +01:00
}
#feedUpdateErrors {
display : none;
}
#allEntryTags {
border-width : 0px 0px 1px 0px;
border-style : solid;
2014-01-28 12:40:33 +01:00
border-color : #ddd;
padding-bottom : 5px;
display : none;
}
2005-12-02 17:36:39 +01:00
img.markedPic, img.pubPic {
cursor : pointer;
vertical-align : middle;
opacity : 0.5;
-webkit-transition : opacity 0.25s;
transition : opacity 0.25s;
}
img.markedPic:hover, img.pubPic:hover {
opacity : 1;
}
img[src*='pub_set.png'], img[src*='mark_set.png'] {
opacity : 1;
}
div.tagCloudContainer {
2014-01-28 12:40:33 +01:00
border : 1px solid #ddd;
margin : 5px 0px 5px 0px;
2007-05-17 15:21:55 +02:00
padding : 5px;
text-align : center;
}
2009-01-23 06:53:31 +01:00
div.errorExplained {
2014-01-28 12:40:33 +01:00
border : 1px solid #ddd;
2009-01-23 06:53:31 +01:00
margin : 5px 0px 5px 0px;
padding : 5px;
}
2006-12-08 06:52:21 +01:00
ul.feedErrorsList {
2010-11-21 12:11:48 +01:00
max-height : 300px;
2006-12-08 06:52:21 +01:00
overflow : auto;
list-style-type : none;
2014-01-28 12:40:33 +01:00
border : 1px solid #ddd;
2006-12-08 06:52:21 +01:00
margin : 0px 0px 5px 0px;
2010-11-21 12:11:48 +01:00
padding : 5px;
2006-12-08 06:52:21 +01:00
}
2010-11-21 10:01:38 +01:00
ul.feedErrorsList em {
color : #555;
2010-11-21 10:01:38 +01:00
}
2005-12-29 17:36:41 +01:00
ul.browseFeedList {
height : 300px;
overflow : auto;
2010-11-18 20:26:04 +01:00
border-width : 0px 1px 1px 1px;
2014-01-28 12:40:33 +01:00
border-color : #ddd;
2010-11-18 20:26:04 +01:00
border-style : solid;
margin : 0px 0px 5px 0px;
background-color : white;
2010-11-18 20:26:04 +01:00
list-style-type : none;
padding : 0px;
}
ul.browseFeedList li {
margin : 0px;
2010-11-18 20:26:04 +01:00
padding : 2px 4px 2px 4px;
2005-12-29 17:36:41 +01:00
}
span.subscribers {
color : #808080;
2005-12-29 17:36:41 +01:00
}
2005-12-30 06:17:23 +01:00
div.subscribers {
color : #808080;
2010-01-13 09:37:02 +01:00
font-size : 12px;
float : right;
2005-12-30 06:17:23 +01:00
}
div.browserDetails {
margin : 5px 5px 5px 5px;
padding : 5px;
2005-12-30 06:17:23 +01:00
}
2005-12-30 07:00:36 +01:00
ul.compact {
list-style-type : none;
margin : 0px;
padding : 0px;
2005-12-30 07:00:36 +01:00
}
ul.compact li {
margin : 0px;
padding : 0px;
2005-12-30 07:00:36 +01:00
}
.noborder {
border-width : 0px;
}
2006-02-28 17:25:38 +01:00
2006-03-20 15:45:55 +01:00
#overlay {
background : white;
left : 0;
top : 0;
height : 100%;
width : 100%;
z-index : 100;
position : absolute;
2006-03-20 15:45:55 +01:00
}
#overlay_inner {
font-weight : bold;
2010-11-19 14:08:02 +01:00
margin : 1em;
2006-03-20 15:45:55 +01:00
}
2006-05-20 13:39:22 +02:00
form {
margin : 0px;
padding : 0px;
}
div.loadingPrompt {
padding : 1em;
text-align : center;
font-weight : bold;
}
2006-09-28 14:53:11 +02:00
div.whiteBox {
margin-left : 1px;
text-align : center;
padding : 1em 1em 0px 1em;
font-size : 11px;
border-width : 0px 0px 1px 0px;
border-style : solid;
border-color : #ddd;
2006-09-28 14:53:11 +02:00
}
2007-08-10 09:35:55 +02:00
div.autocomplete {
position : absolute;
width : 250px;
background-color : white;
border :1px solid #778899;
margin : 0px;
padding : 0px;
}
div.autocomplete ul {
list-style-type : none;
margin : 0px;
padding : 0px;
}
div.autocomplete ul li.selected {
background-color : #fff7d5;
}
div.autocomplete ul li {
list-style-type : none;
display : block;
margin : 0;
padding : 2px;
height : 32px;
cursor : pointer;
}
.hl .hlTitle {
overflow : hidden;
white-space : nowrap;
max-width : 500px;
text-overflow : ellipsis;
padding-left : 6px;
padding-right : 6px;
}
div#headlines-frame.wide .hlTitle {
max-width : auto;
overflow : visible;
white-space : normal;
}
div#headlines-frame.wide .hl .hlFeed {
display : none;
}
.hl a.title.high, span.hlContent.high .contentPreview {
color : #00aa00;
2008-04-30 10:10:59 +02:00
}
.hl.Unread a.title.high, .hl.Unread span.hlContent.high .contentPreview {
color : #00dd00;
2008-04-30 12:39:05 +02:00
}
.hl a.title.low, span.hlContent.low .contentPreview,
.hl.Unread a.title.low, .hl.Unread span.hlContent.low .contentPreview {
2008-04-30 12:39:05 +02:00
color : #909090;
text-decoration : line-through;
}
img.hlScorePic {
vertical-align : middle;
width : 16px;
height : 16px;
}
div.dlgSec {
2010-01-13 09:37:02 +01:00
font-size : 12px;
color : #555;
font-weight : bold;
clear : both;
height : 20px;
}
div.dlgSecCont {
position : relative;
left : 150px;
top : -20px;
float : left;
2010-01-13 09:37:02 +01:00
font-size : 12px;
font-weight : normal;
}
2015-08-12 19:35:53 +02:00
div.dlgSecCont hr, div.dlgSecSimple hr {
height : 0px;
line-height : 0px;
border : 0px solid transparent;
margin : 2px;
}
div.dlgSecCont > * {
position : relative;
top : -2px;
}
div.dlgButtons {
text-align : right;
clear : both;
}
span.labelColorIndicator {
2013-07-10 11:09:12 +02:00
height : 16px;
width : 16px;
border-radius : 4px;
line-height : 14px;
2013-07-10 11:09:12 +02:00
vertical-align : middle;
2012-02-06 12:20:03 +01:00
font-size : 9px;
display : inline-block;
2013-07-10 11:09:12 +02:00
border : 1px solid #ccc;
2010-11-18 18:04:57 +01:00
background-color : #fff7d5;
color : #063064;
text-align : center;
}
2009-10-09 11:13:57 +02:00
div#cmdline {
position : absolute;
left : 5px;
bottom : 5px;
font-size : 11px;
color : #555;
2009-10-09 11:13:57 +02:00
font-weight : bold;
background-color : white;
2015-08-12 15:58:06 +02:00
border : 1px solid rgb(82, 168, 236);
2009-10-09 11:13:57 +02:00
padding : 3px 5px 3px 5px;
z-index : 5;
}
2009-10-09 12:30:21 +02:00
#feed_browser_spinner {
vertical-align : middle;
height : 18px;
width : 18px;
}
2010-11-13 12:04:37 +01:00
div.hlTitle {
display : table-cell;
cursor : pointer;
width : 100%;
vertical-align : middle;
padding-top : 4px;
padding-bottom : 4px;
2010-01-12 14:35:00 +01:00
}
2010-11-13 12:04:37 +01:00
div.hlLeft {
display : table-cell;
vertical-align : middle;
white-space: nowrap;
2010-01-12 13:27:04 +01:00
}
2010-11-13 12:04:37 +01:00
div.hlRight {
display : table-cell;
white-space: nowrap;
text-align : right;
vertical-align : middle;
2010-01-12 13:27:04 +01:00
}
2010-11-15 19:49:00 +01:00
div.hlRight img {
max-width : 16px;
max-height : 16px;
}
.hl span.hlFeed {
display : table-cell;
vertical-align : middle;
text-align : right;
}
.hl span.hlFeed a {
border-radius : 4px;
display : inline-block;
padding : 1px 4px 1px 4px;
font-size : 11px;
font-style : italic;
font-weight : normal;
color : #555;
white-space : nowrap;
}
.hl span.hlFeed a:hover {
2015-08-12 15:58:06 +02:00
color : rgb(82, 168, 236);
}
.hl span.hlUpdated {
color : #555;
display : table-cell;
vertical-align : middle;
text-align : right;
font-size : 11px;
white-space : nowrap;
padding-left : 10px;
}
span.hlUpdated div {
display : inline-block;
2010-01-12 13:56:29 +01:00
}
2012-12-25 11:42:20 +01:00
div.hlLeft {
padding-left : 8px;
}
2010-11-13 12:04:37 +01:00
div.hlLeft input {
margin-left : 4px;
margin-right : 4px;
2010-01-12 13:27:04 +01:00
}
2010-11-13 12:04:37 +01:00
div.hlLeft img, div.hlRight img {
margin : 0px 4px;
}
2010-11-13 12:04:37 +01:00
div.hlLeft img {
width : 16px;
height : 16px;
2010-11-13 12:04:37 +01:00
}
div.fatalError {
margin-bottom : 10px;
}
2010-11-14 21:46:49 +01:00
div.fatalError button {
margin-top : 5px;
}
div.fatalError textarea {
width : 565px;
height : 200px;
2010-11-14 21:46:49 +01:00
}
2013-05-14 13:28:13 +02:00
#ttrssMain #main {
border-width : 0px;
margin : 0px;
padding : 0px;
}
2010-12-02 14:43:05 +01:00
#header-wrap {
border-width : 0px;
margin : 0px;
padding : 0px;
}
#content-wrap {
padding : 0px;
2014-01-27 21:04:36 +01:00
border-width : 0px;
margin : 0px;
}
#feeds-holder {
padding : 0px;
2014-12-04 22:29:54 +01:00
border-width : 0px 0px 0px 0px;
2014-01-27 16:03:35 +01:00
border-style : solid;
2014-01-28 12:40:33 +01:00
border-color : #ddd;
2013-05-08 07:18:22 +02:00
overflow : hidden;
2014-01-27 21:37:52 +01:00
background : #f5f5f5;
box-shadow : inset -1px 0px 2px -1px rgba(0,0,0,0.1);
-webkit-overflow-scrolling : touch;
}
#headlines-wrap-inner {
padding : 0px;
margin : 0px;
border-width : 0px;
}
#headlines-frame {
padding : 0px;
border-width : 0px;
2014-01-29 07:00:26 +01:00
border-color : #ddd;
2010-11-15 20:31:41 +01:00
margin-top : 0px;
-webkit-overflow-scrolling : touch;
2010-11-15 20:31:41 +01:00
}
#headlines-toolbar_splitter, #toolbar_splitter {
2010-11-15 20:31:41 +01:00
display : none;
}
#toolbar {
2010-11-17 12:04:22 +01:00
padding : 0px;
margin : 0px;
border-width : 0px;
white-space: nowrap;
2013-05-11 12:10:51 +02:00
font-size : 12px;
2014-01-27 16:03:35 +01:00
}
#main-toolbar {
2014-01-27 21:37:52 +01:00
background : white;
2014-01-27 21:40:53 +01:00
border-width : 0px 0px 1px 0px;
2014-01-28 12:40:33 +01:00
border-color : #ddd;
2014-01-27 20:21:26 +01:00
border-style : solid;
padding-left : 4px;
height : 26px;
}
#header {
border-width : 0px;
2010-12-02 14:43:05 +01:00
text-align : right;
color : #555;
2010-12-02 14:43:05 +01:00
padding : 5px 5px 0px 0px;
margin : 0px;
position : absolute;
right : 0px;
top : 0px;
z-index : 5;
}
#footer {
text-align : center;
color : #555;
2010-11-16 13:56:48 +01:00
padding : 4px 4px 8px 4px;
border-width : 0px;
}
#content-insert {
padding : 0px;
2014-01-28 12:40:33 +01:00
border-color : #ddd;
2014-01-27 16:48:16 +01:00
border-width : 0px;
line-height: 1.5;
font-size : 15px;
2011-11-08 17:57:28 +01:00
overflow : auto;
-webkit-overflow-scrolling : touch;
}
#feedTree .dijitTreeRow .dijitTreeLabel.Unread {
font-weight : bold;
}
#feedTree .dijitTreeRow.Error .dijitTreeLabel {
color : red;
}
2010-11-16 11:01:28 +01:00
img.feedIcon, img.tinyFeedIcon {
2010-11-16 14:17:58 +01:00
width : 16px;
height : 16px;
2013-07-10 11:09:12 +02:00
line-height : 16px;
2013-02-25 13:39:25 +01:00
vertical-align : middle;
display : inline-block;
2010-11-16 07:49:00 +01:00
}
2010-11-16 10:23:06 +01:00
.player {
display : inline-block;
color : #555;
font-size : 11px;
font-family : sans-serif;
border : 1px solid #555;
padding : 0px 4px 0px 4px;
margin : 0px 2px 0px 2px;
width : 50px;
text-align : center;
background : white;
}
.player.playing {
color : #00c000;
border-color : #00c000;
}
.player:hover {
background : #f0f0f0;
cursor : pointer;
}
2010-11-24 17:23:24 +01:00
#headlines-spacer {
height : 100%;
margin-left : 1px;
text-align : center;
color : #555;
font-size : 11px;
font-style : italic;
}
#headlines-spacer a, #headlines-spacer span {
color : #555;
padding : 10px;
display : block;
}
#headlines-spacer a:hover {
2015-08-12 15:58:06 +02:00
color : rgb(82, 168, 236);
}
2014-01-27 16:03:35 +01:00
2012-08-30 16:50:56 +02:00
ul#filterDlg_Matches, ul#filterDlg_Actions {
max-height : 100px;
overflow : auto;
list-style-type : none;
border-style : solid;
2014-01-28 12:40:33 +01:00
border-color : #ddd;
2012-08-30 16:50:56 +02:00
border-width : 0px 1px 1px 1px;
background-color : white;
2012-08-30 16:50:56 +02:00
margin : 0px 0px 5px 0px;
padding : 0px;
}
ul#filterDlg_Matches li, ul#filterDlg_Actions li {
cursor : pointer;
padding : 0px 0px 0px 5px;
}
2012-12-28 12:42:02 +01:00
ul.helpKbList {
max-height : 300px;
overflow : auto;
list-style-type : none;
2014-01-28 12:40:33 +01:00
border : 1px solid #ddd;
2012-12-28 12:42:02 +01:00
margin : 0px 0px 5px 0px;
padding : 5px;
}
ul.helpKbList span.hksequence {
width : 6em;
margin-left : 20px;
2015-08-12 15:58:06 +02:00
color : rgb(82, 168, 236);
2012-12-28 12:42:02 +01:00
font-weight : bold;
display : inline-block;
}
ul.helpKbList h2 {
margin-top : 0px;
}
2013-03-19 17:44:20 +01:00
span.collapseBtn {
cursor : pointer;
}
span.collapseBtn img {
vertical-align : middle;
}
div.postContent h1 {
font-size : 16px;
}
div.postContent h2,
2014-01-29 13:53:42 +01:00
div.postContent h3,
div.postContent h4 {
font-size : 15px;
}
div.postContent p {
/*max-width : 650px;*/
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}
2013-03-21 13:50:27 +01:00
div.postContent iframe {
min-width : 50%;
2015-07-11 20:28:31 +02:00
max-width : 98%;
2013-03-21 13:50:27 +01:00
}
2013-03-22 09:42:48 +01:00
div.postHeader span.author {
color : #555;
2013-03-22 09:42:48 +01:00
font-size : 11px;
2013-03-23 06:25:36 +01:00
font-weight : normal;
2013-03-22 09:42:48 +01:00
}
2013-03-24 17:22:16 +01:00
select.attachments {
display : block;
margin-top : 10px;
max-width : 120px;
}
2013-04-15 11:16:14 +02:00
#selected_prompt {
margin-right : 25px;
2015-08-11 17:23:11 +02:00
vertical-align : middle;
2013-04-15 11:16:14 +02:00
}
2015-08-11 17:19:04 +02:00
span.sel_links {
margin-right : 4px;
vertical-align : middle;
}
/*#feedTree img.feedIcon {
2013-07-10 11:09:12 +02:00
position : relative;
top : -2px;
}*/
body#ttrssMain.claro #feedTree.dijitTree .dijitTreeNode .dijitTreeRowSelected {
box-shadow : -1px 0px 2px -1px rgba(0,0,0,0.1);
border-right-color : white;
2013-07-10 11:09:12 +02:00
}
body#ttrssMain #feedTree.dijitTree .dijitTreeContainer {
max-width : 100%;
}
body#ttrssMain #feedTree.dijitTree .dijitTreeRow {
overflow: hidden;
text-overflow: ellipsis;
}
body#ttrssMain #feedTree.dijitTree .dijitTreeNode .dijitTreeRow {
2013-05-11 12:10:51 +02:00
padding : 2px 0px 2px;
2013-07-09 15:05:43 +02:00
height : 22px;
border-width : 1px;
color : #333;
}
body#ttrssMain #feedTree.dijitTree img.tinyFeedIcon {
position : relative;
top : -2px;
}
2014-01-28 12:12:22 +01:00
ul#filterDlg_Matches li div.dijitCheckBox, ul#filterDlg_Actions li div.dijitCheckBox {
margin-right : 5px;
2013-05-07 10:14:11 +02:00
}
body#ttrssMain #feedTree {
height : 100%;
overflow-x : hidden;
text-rendering: optimizelegibility;
2017-06-24 13:33:29 +02:00
font-family : "Segoe UI Web", "Segoe UI", Ubuntu, "Helvetica Neue",
Helvetica, Arial, sans-serif;
}
2013-05-07 14:28:49 +02:00
2014-01-27 21:04:36 +01:00
body#ttrssMain #feedTree .counterNode.aux {
background : #f0f0f0;
color : #999;
border-color : #f0f0f0;
}
2014-01-27 21:04:36 +01:00
body#ttrssMain #feedTree .counterNode {
2013-05-07 14:28:49 +02:00
font-weight : bold;
display : inline-block;
font-size : 9px;
text-align : center;
2015-08-12 15:58:06 +02:00
border : 1px solid rgb(82, 168, 236);
2013-05-07 14:28:49 +02:00
color : white;
2015-08-12 15:58:06 +02:00
background : rgb(82, 168, 236);
2013-05-07 14:28:49 +02:00
border-radius : 4px;
vertical-align : middle;
float : right;
position : relative;
2013-07-09 15:05:43 +02:00
line-height : 14px;
2014-01-27 16:03:35 +01:00
margin-right : 8px;
2013-07-09 15:05:43 +02:00
margin-top : 3px;
2013-05-08 06:49:14 +02:00
min-width : 23px;
2013-07-09 15:05:43 +02:00
height : 14px;
2013-05-07 14:28:49 +02:00
}
body#ttrssMain #feedTree .dijitTreeNode .loadingExpando {
left : -3px;
height : 22px;
position : relative;
2017-01-21 21:00:05 +01:00
top : -3px;
}
span.highlight {
background-color : #ffff00;
color : #cc90cc;
}
div.enclosure_title {
}
2014-01-27 22:10:59 +01:00
body#ttrssMain #headlines-frame .dijitCheckBox {
border-width : 0px;
opacity : 0.5;
}
body#ttrssMain #headlines-frame .dijitCheckBoxHover,
body#ttrssMain #headlines-frame .dijitCheckBoxChecked {
opacity : 1;
2014-01-27 22:10:59 +01:00
}
body#ttrssMain #feedTree .dijitTreeRow img.dijitTreeExpandoLeaf {
width : 16px;
height : 16px;
vertical-align : middle;
position : relative;
}
#headlines-frame {
-webkit-transform: translateZ(0);
-webkit-backface-visibility: hidden;
}
2014-01-27 22:15:20 +01:00
:focus {
outline: none;
}
.dijitDropDownButton.attachments .dijitButtonText {
font-size : 12px;
}
.dijitDropDownButton.attachments {
display : inline-block;
}
#editTagsDlg{
overflow: visible;
}