ttrss/tt-rss.css

1008 lines
15 KiB
CSS
Raw Normal View History

body#ttrssMain, body#ttrssPrefs, body#ttrssLogin, body {
background : white;
color : black;
margin : 0px;
padding : 0px;
2011-08-30 09:28:01 +00:00
font-family : sans-serif;
2010-11-19 16:09:31 +00:00
font-size : 12px;
2005-08-21 10:13:10 +00:00
}
2010-11-16 13:08:15 +00:00
body#ttrssPrefs {
background-color : #ecf4ff;
}
body#ttrssPrefs #footer, body#ttrssPrefs #header {
2010-12-03 09:03:44 +00:00
background-color : #ecf4ff;
2010-11-16 13:33:24 +00:00
padding-left : 8px;
padding-right : 8px;
2010-11-16 13:08:15 +00:00
}
2005-09-07 07:19:14 +00:00
div.postReply {
2007-08-10 03:29:56 +00:00
padding : 0px;
2005-08-21 10:13:10 +00:00
}
2005-09-07 08:46:30 +00:00
div.postReply a {
color : #4684ff;
2005-09-07 08:46:30 +00:00
}
div.postReply a:hover {
color : black;
2005-09-07 08:46:30 +00:00
}
2005-09-07 07:19:14 +00:00
div.postReply div.postHeader {
2007-08-10 03:29:56 +00:00
border-width : 0px 0px 1px 0px;
2009-01-19 09:51:51 +00:00
border-style : solid;
2013-03-31 11:27:22 +00:00
border-color : #c0c0c0;
2013-03-31 11:54:10 +00:00
background : #fafafa;
2013-03-31 11:33:09 +00:00
box-shadow : 0px 0px 3px 0px #ccc;
2007-08-10 03:29:56 +00:00
padding : 5px;
2009-01-19 09:51:51 +00:00
color : #909090;
2005-12-20 15:53:43 +00:00
}
div.postReply div.postTitle {
overflow : hidden;
white-space : nowrap;
}
div.postReply div.postDate {
padding-left : 10px;
}
2005-09-07 07:19:14 +00:00
div.postReply div.postContent {
padding : 10px;
2010-01-13 08:37:02 +00:00
font-size : 12px;
}
2007-05-19 07:37:22 +00:00
div.postReply div.postContent img {
border-width : 0px;
max-width : 98%;
2007-05-19 07:37:22 +00:00
}
div.postReply div.postEnclosures {
margin-top : 1em;
color : gray;
}
2007-08-11 16:28:04 +00:00
div.postReply img.tagsPic {
width : 16px;
height : 16px;
margin-left : 4px;
2007-08-11 16:28:04 +00:00
vertical-align : middle;
}
div.articleNote {
background-color : #fff7d5;
padding : 5px;
border-style : none none dashed none;
border-color : #e7d796;
border-width : 1px;
background-color : #fff7d5;
color : #9a8c59;
}
div.articleNote div.noteEdit {
float : right;
cursor : pointer;
}
div.postReply span.author {
2010-01-13 08:37:02 +00:00
font-size : 12px;
}
2007-08-11 16:28:04 +00:00
2005-09-07 07:19:14 +00:00
h1 {
2008-05-18 05:40:21 +00:00
font-size : 18px;
}
2005-09-07 07:19:14 +00:00
h2 {
2008-05-18 05:40:21 +00:00
font-size : 16px;
font-weight : bold;
border-width : 0px 0px 1px 0px;
border-style : solid;
border-color : #ecf4ff;
2005-08-21 10:13:10 +00:00
}
2005-10-28 17:58:20 +00:00
h3 {
2010-01-13 08:37:02 +00:00
font-size : 12px;
font-weight : bold;
border-width : 0px 0px 1px 0px;
border-style : solid;
border-color : #ecf4ff;
2005-10-28 17:58:20 +00:00
}
2005-09-07 07:19:14 +00:00
hr {
border-width : 0px 0px 1px 0px;
border-style : dashed;
border-color : #e0e0e0;
2005-09-07 07:19:14 +00:00
}
2005-08-21 16:23:19 +00:00
2005-09-07 07:19:14 +00:00
a {
color : black;
text-decoration : none;
2005-08-21 10:13:10 +00:00
}
2005-09-07 07:19:14 +00:00
a:hover {
color : #4684ff;
2005-08-26 07:05:16 +00:00
}
2005-09-07 07:19:14 +00:00
#piggie {
2006-08-12 14:57:13 +00:00
z-index : 999;
position : absolute;
2005-08-26 07:05:16 +00:00
}
2006-10-01 09:08:55 +00:00
#notify {
top : 25px;
2013-03-27 18:24:26 +00:00
right : 10px;
border-width : 1px;
2006-10-01 09:08:55 +00:00
border-style : solid;
2006-05-18 07:56:52 +00:00
position : absolute;
display : none;
float : right;
2013-03-27 18:24:26 +00:00
font-size : 11px;
2010-11-19 13:08:02 +00:00
z-index : 99;
2013-03-27 18:24:26 +00:00
padding : 5px;
min-width : 200px;
box-shadow : 0px 0px 2px #ccc;
2005-08-21 10:13:10 +00:00
}
#notify img {
vertical-align : middle;
2013-03-27 18:24:26 +00:00
margin-right : 4px;
}
2013-03-27 18:24:26 +00:00
.notify {
2007-03-02 19:58:58 +00:00
border-color : #d7c47a;
background-color : #fff7d5;
}
2013-03-27 18:24:26 +00:00
.notify.progress {
2006-10-01 09:08:55 +00:00
border-color : #d7c47a;
background-color : #fff7d5;
}
2013-03-27 18:24:26 +00:00
.notify.info {
border-color : #88b0f0;
background-color : #ecf4ff;
}
.notify.error {
2006-10-01 09:08:55 +00:00
background-color : #ffcccc;
border-color : #ff0000;
}
2013-03-27 18:24:26 +00:00
.notify.error span:hover {
2007-01-27 09:21:55 +00:00
color : red;
cursor : pointer;
}
.hl.Unread div.hlTitle {
font-weight : bold;
}
.hl.even.Grayed {
2012-10-25 13:11:09 +00:00
background : #f0f0f0;
color : #909090;
border-width : 0px 0px 1px 0px;
border-style : solid;
border-color : #c0c0c0;
border-collapse : collapse;
}
.hl.odd.Grayed {
color : #909090;
2005-08-23 14:47:46 +00:00
}
.hl {
border-width : 0px 1px 1px 0px;
border-style : solid;
border-color : #c0c0c0;
}
.hl.active {
background : #ecf4ff ! important;
}
.hl.even {
2012-10-25 13:11:09 +00:00
background : #f0f0f0;
border-collapse : collapse;
2005-08-23 14:47:46 +00:00
}
.hl.odd {
background : white;
2005-08-23 14:47:46 +00:00
}
div.filterTestHolder {
2010-11-21 11:11:48 +00:00
height : 300px;
2006-10-04 05:40:00 +00:00
overflow : auto;
2010-11-18 19:26:04 +00:00
border-color : #c0c0c0;
border-style : solid;
margin : 0px 0px 5px 0px;
2010-11-21 11:11:48 +00:00
background-color : #ecf4ff;
2010-11-21 15:01:14 +00:00
border-width : 1px 1px 1px 1px;
}
#content-insert blockquote, #headlines-frame blockquote, .dijitContentPane blockquote {
2013-02-28 15:16:27 +00:00
margin : 5px 0px 5px 0px;
padding : 10px;
color : gray;
border-width : 0px 0px 0px 3px;
border-color : #c0c0c0;
border-style : solid;
2013-02-28 15:16:27 +00:00
background : #fafafa;
}
#content-insert code, #headlines-frame code, .dijitContentPane code {
2013-02-28 15:24:20 +00:00
color : #009900;
2010-11-23 08:41:21 +00:00
font-family : monospace;
font-size : 12px;
2013-02-28 15:24:20 +00:00
}
#content-insert pre, #headlines-frame pre, .dijitContentPane pre {
margin : 5px 0px 5px 0px;
padding : 10px;
color : gray;
font-family : monospace;
font-size : 12px;
border-width : 0px;
border-color : #c0c0c0;
border-style : solid;
background : #fafafa;
display : block;
2010-11-23 08:41:21 +00:00
}
2013-03-27 18:03:52 +00:00
div.notice, div.warning, div.error {
padding : 4px 10px 4px 4px;
display : inline-block;
margin : 2px 0px 4px 0px;
2013-03-28 09:37:48 +00:00
font-size : 12px;
2013-03-27 18:03:52 +00:00
box-shadow : 0px 0px 2px #ccc;
}
div.notice div.inner, div.warning div.inner, div.error div.inner {
vertical-align : middle;
}
div.notice {
2013-03-27 18:03:52 +00:00
background : #ecf4ff;
}
div.warning {
background : #fff7d5;
}
2006-10-04 13:38:18 +00:00
div.error {
background : #ffcccc;
2013-03-27 18:03:52 +00:00
}
div.warning img, div.notice img, div.error img {
margin-right : 4px;
float : left;
2013-03-27 18:03:52 +00:00
vertical-align : middle;
2006-10-04 13:38:18 +00:00
}
ul.nomarks {
list-style-type : none;
margin : 0px;
padding : 10px;
}
2013-03-19 11:10:26 +00:00
div.prefHelp {
color : gray;
2006-09-30 06:57:01 +00:00
padding : 5px;
2005-11-20 10:14:38 +00:00
}
span.feed_error {
color : red;
}
2008-05-16 06:05:12 +00:00
.insensitive {
color : gray;
2005-11-20 10:36:00 +00:00
}
2005-11-23 09:48:23 +00:00
2007-01-30 17:17:34 +00:00
.insensitive a {
color : #4684ff;
}
.insensitive a:hover {
color : black;
}
div#headlines-toolbar {
border-width : 0px 0px 1px 0px;
2011-12-20 18:38:25 +00:00
background-color : #f0f0f0;
border-color : #c0c0c0;
2010-01-13 08:37:02 +00:00
font-size : 11px;
2011-08-30 09:28:01 +00:00
font-family : "Segoe UI", Tahoma, sans-serif;
2008-05-18 05:40:21 +00:00
color : gray;
2010-11-15 18:49:00 +00:00
padding : 0px;
margin : 0px;
overflow : hidden;
2011-12-20 18:38:25 +00:00
height : 25px;
line-height : 25px;
padding-left : 4px;
2006-10-01 05:38:13 +00:00
}
2010-11-15 18:49:00 +00:00
div#headlines-toolbar .dijitSelect {
font-size : 11px;
2011-12-20 18:38:25 +00:00
position : relative;
top : -2px;
2010-11-15 18:49:00 +00:00
}
2011-12-20 18:38:25 +00:00
div#headlines-toolbar span.r {
float: right;
position: relative;
padding : 0 4px 0px 4px;
2010-11-15 18:49:00 +00:00
text-align : right;
2011-12-20 18:38:25 +00:00
}
div#headlines-toolbar span.r span.error {
color : red;
}
div#headlines-toolbar span.r a {
color : gray;
2006-03-22 07:49:21 +00:00
}
2011-12-20 18:38:25 +00:00
div#headlines-toolbar span.r a:hover {
color : black;
}
span.contentPreview {
color : gray;
font-weight : normal;
}
2005-11-27 15:50:27 +00:00
2005-11-27 16:23:27 +00:00
span.contentPreview:hover {
color : #4684ff;
2005-11-27 16:23:27 +00:00
}
2010-11-13 11:04:37 +00:00
span.hlLabelRef {
background-color : #fff7d5;
2012-02-06 11:20:03 +00:00
font-size : 8px;
color : #063064;
font-weight : normal;
margin : 0px 3px 0px 3px;
padding : 0px 4px 0px 4px;
white-space: nowrap;
}
2006-12-07 09:57:09 +00:00
div.postHeader div.postDate {
text-align : right;
color : gray;
2006-12-07 09:57:09 +00:00
float : right;
}
2006-12-07 09:57:09 +00:00
div.postHeader div {
padding-bottom : 3px;
2010-01-13 08:37:02 +00:00
font-size : 12px;
2006-03-23 07:24:06 +00:00
}
#feedUpdateErrors {
display : none;
}
#allEntryTags {
2010-01-13 08:37:02 +00:00
font-size : 12px;
border-width : 0px 0px 1px 0px;
border-style : solid;
border-color : #c0c0c0;
padding-bottom : 5px;
display : none;
}
2005-12-02 16:36:39 +00:00
2013-03-17 12:35:05 +00:00
div.hlFeed, div.hlFeed a {
font-size : 10px;
2007-08-24 06:39:57 +00:00
color : gray;
font-style : italic;
font-weight : normal;
white-space: nowrap;
2007-08-24 06:39:57 +00:00
}
2013-03-17 12:35:05 +00:00
div.hlFeed a:hover {
2007-08-24 06:39:57 +00:00
color : #4684ff;
}
img.markedPic {
cursor : pointer;
vertical-align : middle;
}
div.tagCloudContainer {
2010-11-18 19:26:04 +00:00
border : 1px solid #c0c0c0;
2010-11-21 11:11:48 +00:00
background-color : #ecf4ff;
margin : 5px 0px 5px 0px;
2007-05-17 13:21:55 +00:00
padding : 5px;
text-align : center;
}
2009-01-23 05:53:31 +00:00
div.errorExplained {
2010-11-18 19:26:04 +00:00
border : 1px solid #c0c0c0;
2010-11-21 11:11:48 +00:00
background-color : #ecf4ff;
2009-01-23 05:53:31 +00:00
margin : 5px 0px 5px 0px;
padding : 5px;
}
2006-12-08 05:52:21 +00:00
ul.feedErrorsList {
2010-11-21 11:11:48 +00:00
max-height : 300px;
2006-12-08 05:52:21 +00:00
overflow : auto;
list-style-type : none;
2010-11-21 09:01:38 +00:00
border : 1px solid #c0c0c0;
2010-11-21 11:11:48 +00:00
background-color : #ecf4ff;
2006-12-08 05:52:21 +00:00
margin : 0px 0px 5px 0px;
2010-11-21 11:11:48 +00:00
padding : 5px;
2006-12-08 05:52:21 +00:00
}
2010-11-21 09:01:38 +00:00
ul.feedErrorsList em {
color : gray;
}
2005-12-29 16:36:41 +00:00
ul.browseFeedList {
height : 300px;
overflow : auto;
2010-11-18 19:26:04 +00:00
border-width : 0px 1px 1px 1px;
border-color : #c0c0c0;
border-style : solid;
margin : 0px 0px 5px 0px;
background-color : white;
2010-11-18 19:26:04 +00:00
list-style-type : none;
padding : 0px;
}
ul.browseFeedList li {
margin : 0px;
2010-11-18 19:26:04 +00:00
padding : 2px 4px 2px 4px;
2005-12-29 16:36:41 +00:00
}
span.subscribers {
color : #808080;
2005-12-29 16:36:41 +00:00
}
2005-12-30 05:17:23 +00:00
div.subscribers {
color : #808080;
2010-01-13 08:37:02 +00:00
font-size : 12px;
float : right;
2005-12-30 05:17:23 +00:00
}
div.browserDetails {
margin : 5px 5px 5px 5px;
padding : 5px;
2005-12-30 05:17:23 +00:00
}
2005-12-30 06:00:36 +00:00
ul.compact {
list-style-type : none;
margin : 0px;
padding : 0px;
2005-12-30 06:00:36 +00:00
}
ul.compact li {
margin : 0px;
padding : 0px;
2005-12-30 06:00:36 +00:00
}
.noborder {
border-width : 0px;
}
2006-02-28 16:25:38 +00:00
2006-03-20 14:45:55 +00:00
#overlay {
background : white;
left : 0;
top : 0;
height : 100%;
width : 100%;
z-index : 100;
position : absolute;
2006-03-20 14:45:55 +00:00
}
#overlay_inner {
font-weight : bold;
2010-11-19 13:08:02 +00:00
margin : 1em;
2006-03-20 14:45:55 +00:00
}
2006-05-20 11:39:22 +00:00
form {
margin : 0px;
padding : 0px;
}
#main_toolbar_form {
2007-02-15 07:03:49 +00:00
margin : 0px;
padding : 0px;
2010-11-15 18:49:00 +00:00
display : table-cell;
white-space : nowrap;
width : 100%;
}
div.loadingPrompt {
padding : 1em;
text-align : center;
font-weight : bold;
}
2006-09-28 12:53:11 +00:00
div.whiteBox {
margin-left : 1px;
text-align : center;
2006-09-29 07:43:29 +00:00
padding : 1em;
2006-09-28 12:53:11 +00:00
}
2010-11-15 18:49:00 +00:00
html, body#ttrssMain, #main {
width: 100%;
height: 100%;
border: 0;
padding: 0;
margin: 0;
2010-11-15 18:49:00 +00:00
}
2006-09-28 12:00:03 +00:00
2009-10-09 09:42:19 +00:00
#toolbar div.actionChooser {
2010-11-15 18:49:00 +00:00
display : table-cell;
text-align : right;
2010-11-17 11:04:22 +00:00
padding-right : 3px;
2006-09-28 12:00:03 +00:00
}
2007-08-10 07:35:55 +00: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;
}
2008-03-20 05:34:43 +00:00
a.visibleLink {
color : #4684ff;
}
2010-11-13 11:04:37 +00:00
.hlContentH a, .hlContentH span {
2008-04-30 08:10:59 +00:00
color : #00cc00;
}
2010-11-13 11:04:37 +00:00
.hlContentL a, .hlContentL span {
2008-04-30 08:10:59 +00:00
color : #909090;
text-decoration : line-through;
}
2008-04-30 10:39:05 +00:00
span.titleWrapH, span.titleWrapH a {
color : #00cc00;
}
span.titleWrapL, span.titleWrapL a {
color : #909090;
text-decoration : line-through;
}
img.hlScorePic {
vertical-align : middle;
width : 16px;
height : 16px;
}
div.dlgSec {
2010-01-13 08:37:02 +00:00
font-size : 12px;
color : gray;
font-weight : bold;
clear : both;
height : 20px;
}
div.dlgSecCont {
position : relative;
left : 150px;
top : -20px;
float : left;
2010-01-13 08:37:02 +00:00
font-size : 12px;
font-weight : normal;
}
div.dlgSecCont 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 {
height : 14px;
width : 14px;
line-height : 14px;
2012-02-06 11:20:03 +00:00
font-size : 9px;
display : inline-block;
border : 1px solid black;
background-color : #fff7d5;
color : #063064;
text-align : center;
margin-right : 2px;
}
2010-11-18 17:04:57 +00:00
span.labelColorIndicator2 {
height : 14px;
width : 14px;
2012-02-06 11:20:03 +00:00
font-size : 9px;
2010-11-18 17:04:57 +00:00
display : inline-block;
border : 1px solid black;
background-color : #fff7d5;
color : #063064;
text-align : center;
margin-right : 2px;
vertical-align : bottom;
}
2009-10-09 09:13:57 +00:00
div#cmdline {
position : absolute;
left : 5px;
bottom : 5px;
font-size : 11px;
color : gray;
font-weight : bold;
background-color : white;
border : 1px solid #88b0f0;
padding : 3px 5px 3px 5px;
z-index : 5;
}
2009-10-09 10:30:21 +00:00
#feed_browser_spinner {
vertical-align : middle;
height : 18px;
width : 18px;
}
2010-11-13 11:04:37 +00:00
div.hlTitle {
display : table-cell;
cursor : pointer;
width : 100%;
vertical-align : middle;
padding-top : 4px;
padding-bottom : 4px;
2010-01-12 13:35:00 +00:00
}
2010-11-13 11:04:37 +00:00
div.hlLeft {
display : table-cell;
vertical-align : middle;
white-space: nowrap;
2010-01-12 12:27:04 +00:00
}
2010-11-13 11:04:37 +00:00
div.hlRight {
display : table-cell;
white-space: nowrap;
text-align : right;
vertical-align : middle;
2010-01-12 12:27:04 +00:00
}
2010-11-15 18:49:00 +00:00
div.hlRight img {
max-width : 16px;
max-height : 16px;
}
2010-11-13 11:04:37 +00:00
span.hlUpdated {
color : gray;
min-width : 100px;
display : table-cell;
width : 100%;
vertical-align : middle;
text-align : right;
font-size : 10px;
font-weight : normal;
2010-01-12 12:56:29 +00:00
}
2012-12-25 10:42:20 +00:00
div.hlLeft {
padding-left : 8px;
}
2010-11-13 11:04:37 +00:00
div.hlLeft input {
margin-left : 4px;
margin-right : 4px;
2010-01-12 12:27:04 +00:00
}
2010-11-13 11:04:37 +00:00
div.hlLeft img, div.hlRight img {
margin : 0px 4px 0px 4px;
}
2010-11-13 11:04:37 +00:00
div.hlLeft img {
width : 16px;
height : 16px;
2010-11-13 11:04:37 +00:00
}
div.fatalError {
margin-bottom : 10px;
}
2010-11-14 20:46:49 +00:00
div.fatalError button {
margin-top : 5px;
}
div.fatalError textarea {
width : 100%;
height : 100px;
}
#main {
border-width : 0px;
margin : 0px;
padding : 0px;
}
2010-12-02 13:43:05 +00:00
#header-wrap {
border-width : 0px;
margin : 0px;
padding : 0px;
}
#content-wrap {
padding : 0px;
border-width : 0px 0px 1px 1px;
2013-02-06 07:09:45 +00:00
border-style : solid;
border-color : #c0c0c0;
margin : 0px;
}
#feeds-holder {
padding : 0px;
2010-11-15 18:49:00 +00:00
border-color : #88b0f0;
border-left-width : 0px;
border-bottom-width : 0px;
2010-12-02 13:43:05 +00:00
border-top-width : 0px;
}
#headlines-wrap-inner {
padding : 0px;
margin : 0px;
border-width : 0px;
}
#headlines-frame {
padding : 0px;
2010-11-15 18:49:00 +00:00
border-color : #88b0f0;
border-left-width : 0px;
2010-11-15 18:49:00 +00:00
border-right-width : 0px;
2010-11-15 19:31:41 +00:00
margin-top : 0px;
border-top-width : 0px;
}
#headlines-toolbar_splitter, #toolbar_splitter {
2010-11-15 19:31:41 +00:00
display : none;
}
#toolbar {
2010-11-17 11:04:22 +00:00
padding : 0px;
margin : 0px;
border-width : 0px;
white-space: nowrap;
2012-08-14 14:59:10 +00:00
font-size : 11px;
}
#header {
border-width : 0px;
2010-12-02 13:43:05 +00:00
text-align : right;
color : gray;
padding : 5px 5px 0px 0px;
margin : 0px;
position : absolute;
right : 0px;
top : 0px;
z-index : 5;
}
#footer {
text-align : center;
color : gray;
2010-11-16 12:56:48 +00:00
padding : 4px 4px 8px 4px;
border-width : 0px;
}
#content-insert {
padding : 0px;
2010-11-15 18:49:00 +00:00
border-color : #88b0f0;
border-bottom-width : 0px;
border-right-width : 0px;
border-left-width : 0px;
2011-11-08 16:57:28 +00:00
overflow : auto;
}
.dijitTreeLabel.Unread {
font-weight : bold;
}
.feedParam {
color : gray;
float : right;
margin-right : 1em;
}
2013-03-31 12:52:33 +00:00
.labelParam {
float : right;
margin-right : 1em;
}
.dijitTreeLabel.Disabled, .labelParam.Disabled {
color : gray;
}
2010-11-15 18:49:00 +00:00
.dijitTreeRow.Error {
color : red;
}
2010-11-15 18:49:00 +00:00
.dijitTreeRow.Hidden {
display : none;
}
2010-11-16 06:49:00 +00:00
2010-11-16 10:01:28 +00:00
img.feedIcon, img.tinyFeedIcon {
2010-11-16 13:17:58 +00:00
width : 16px;
height : 16px;
2013-02-25 12:39:25 +00:00
vertical-align : middle;
display : inline-block;
2010-11-16 06:49:00 +00:00
}
2010-11-16 09:23:06 +00:00
2010-11-21 09:54:43 +00:00
.dijitDialog .dijitToolbar {
border : 1px solid #c0c0c0;
}
2010-11-21 10:13:34 +00:00
.dijitDialog h2 {
margin-top : 0px;
margin-bottom : 4px;
border-width : 0px;
}
.player {
display : inline-block;
color : gray;
font-size : 11px;
font-family : sans-serif;
border : 1px solid gray;
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 16:23:24 +00:00
#headlines-spacer {
height : 100%;
margin-left : 1px;
text-align : center;
padding : 1em;
color : gray;
}
2012-08-30 14:50:56 +00:00
ul#filterDlg_Matches, ul#filterDlg_Actions {
max-height : 100px;
overflow : auto;
list-style-type : none;
border-style : solid;
border-color : #c0c0c0;
border-width : 0px 1px 1px 1px;
background-color : #ecf4ff;
margin : 0px 0px 5px 0px;
padding : 0px;
}
ul#filterDlg_Matches li, ul#filterDlg_Actions li {
cursor : pointer;
padding : 0px 0px 0px 5px;
}
ul#filterDlg_Matches li div.dijitCheckBox, ul#filterDlg_Actions li div.dijitCheckBox {
margin-right : 5px;
2012-08-30 14:50:56 +00:00
}
2012-12-25 08:31:07 +00:00
2012-12-28 11:42:02 +00:00
ul.helpKbList {
max-height : 300px;
overflow : auto;
list-style-type : none;
border : 1px solid #c0c0c0;
background-color : #ecf4ff;
margin : 0px 0px 5px 0px;
padding : 5px;
}
ul.helpKbList span.hksequence {
width : 6em;
margin-left : 20px;
color : #88b0f0;
font-weight : bold;
display : inline-block;
}
ul.helpKbList h2 {
margin-top : 0px;
}
2013-03-19 16:44:20 +00:00
.dijitTreeNode .loadingNode {
margin-left : 3px;
}
span.collapseBtn {
cursor : pointer;
}
div.postContent p {
max-width : 650px;
}
2013-03-21 12:50:27 +00:00
div.postContent iframe {
min-width : 50%;
}
2013-03-22 08:42:48 +00:00
div.postHeader span.author {
color : gray;
font-size : 11px;
2013-03-23 05:25:36 +00:00
font-weight : normal;
2013-03-22 08:42:48 +00:00
}
2013-03-24 16:22:16 +00:00
body#ttrssZoom {
margin-left : auto;
margin-right : auto;
2013-04-01 14:14:24 +00:00
padding : 2em;
2013-03-27 15:34:31 +00:00
max-width : 800px;
2013-03-24 16:22:16 +00:00
background : #f0f0f0;
}
2013-03-27 15:34:31 +00:00
body#ttrssZoom div.postContent p {
max-width : 650px;
}
body#ttrssZoom div.postReply {
border : 1px solid #ccc;
box-shadow : 0px 0px 3px #ccc;
}
2013-03-31 11:27:22 +00:00
body#ttrssZoom div.postContent {
2013-03-24 16:22:16 +00:00
background-color : white;
}
body#ttrssZoom div.footer {
margin-top : 1em;
text-align : center;
}
select.attachments {
display : block;
margin-top : 10px;
max-width : 120px;
}
div.hl.active {
border-color : #88b0f0;
}
div.hl.active a.title {
color : #4684ff;
}