1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:45:56 +00:00

cleanup sharepopup dialog

This commit is contained in:
Andrew Dolgov
2019-02-20 13:05:12 +03:00
parent d9e20f8b16
commit be322d6fc8
9 changed files with 260 additions and 249 deletions

View File

@@ -328,12 +328,6 @@ body.ttrss_main div.prefHelp {
color: #555;
padding: 5px;
}
body.ttrss_main .insensitive {
color: #555;
}
body.ttrss_main .small {
font-size: 11px;
}
body.ttrss_main span.preview {
color: #999;
font-weight: normal;
@@ -421,30 +415,6 @@ body.ttrss_main div.whiteBox {
border: 0px solid #ddd;
border-bottom-width: 1px;
}
body.ttrss_main div.autocomplete {
position: absolute;
width: 250px;
background-color: white;
border: 1px solid #ddd;
margin: 0px;
padding: 0px;
}
body.ttrss_main div.autocomplete ul {
list-style-type: none;
margin: 0px;
padding: 0px;
}
body.ttrss_main div.autocomplete ul li.selected {
background-color: #e6e6e6;
}
body.ttrss_main div.autocomplete ul li {
list-style-type: none;
display: block;
margin: 0;
padding: 2px;
height: 32px;
cursor: pointer;
}
body.ttrss_main div#headlines-frame.wide .title {
overflow: visible;
white-space: normal;
@@ -986,6 +956,41 @@ body.ttrss_utility hr {
border: 0px solid #ccc;
border-bottom-width: 1px;
}
body.ttrss_main .insensitive,
body.ttrss_utility .insensitive {
color: #555;
}
body.ttrss_main .small,
body.ttrss_utility .small {
font-size: 11px;
}
body.ttrss_main div.autocomplete,
body.ttrss_utility div.autocomplete {
position: absolute;
width: 250px;
background-color: white;
border: 1px solid #ddd;
margin: 0px;
padding: 0px;
}
body.ttrss_main div.autocomplete ul,
body.ttrss_utility div.autocomplete ul {
list-style-type: none;
margin: 0px;
padding: 0px;
}
body.ttrss_main div.autocomplete ul li.selected,
body.ttrss_utility div.autocomplete ul li.selected {
background-color: #e6e6e6;
}
body.ttrss_main div.autocomplete ul li,
body.ttrss_utility div.autocomplete ul li {
list-style-type: none;
display: block;
margin: 0;
padding: 2px;
cursor: pointer;
}
::selection {
background: #257aa7;
color: white;
@@ -1569,21 +1574,15 @@ body.ttrss_utility.feed_debugger,
body.ttrss_utility.ttrss_zoom {
margin: 2em;
}
body#sharepopup {
color: black;
body.ttrss_utility.share_popup {
margin: 0;
padding: 0;
background: white;
margin: 10px;
}
body#sharepopup h1 {
font-size: 14px;
margin: 0px;
color: #257aa7;
}
body#sharepopup form {
height: 100%;
}
body#sharepopup input {
width: 100%;
body.ttrss_utility.share_popup .content {
padding: 15px;
border-width: 0;
box-shadow: none;
}
.flat li {
padding: 2px;

File diff suppressed because one or more lines are too long

View File

@@ -374,14 +374,6 @@ body.ttrss_main {
padding : 5px;
}
.insensitive {
color : @default-text;
}
.small {
font-size : 11px;
}
span.preview {
color : #999;
font-weight : normal;
@@ -484,35 +476,6 @@ body.ttrss_main {
border-bottom-width: 1px;
}
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;
height : 32px;
cursor : pointer;
}
}
div#headlines-frame.wide {
.title {
overflow: visible;
@@ -1165,6 +1128,41 @@ body.ttrss_main, body.ttrss_utility {
border-bottom-width: 1px;
}
.insensitive {
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;
}
}
}
::selection {

View File

@@ -131,23 +131,14 @@ body.ttrss_utility.ttrss_zoom {
margin : 2em;
}
body#sharepopup {
color : @default-fg;
background: @default-bg;
margin : 10px;
body.ttrss_utility.share_popup {
margin : 0;
padding : 0;
background : white;
h1 {
font-size : 14px;
margin : 0px;
color : @color-accent;
.content {
padding : 15px;
border-width : 0;
box-shadow : none;
}
form {
height : 100%;
}
input {
width : 100%;
}
}