##// END OF EJS Templates
Merged with default branch
Merged with default branch

File last commit:

r933:ce97c754 merge decentral
r933:ce97c754 merge decentral
Show More
base_page.css
497 lines | 7.0 KiB | text/css | CssLexer
neko259
Made tag info not bold
r927 * {
text-decoration: none;
font-weight: inherit;
}
b {
font-weight: bold;
}
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 html {
background: #555;
color: #ffffff;
}
neko259
Minor style changes in MD theme
r663 body {
margin: 0;
}
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 #admin_panel {
background: #FF0000;
color: #00FF00
}
neko259
Merged with the old validation changes.
r75 .input_field_error {
color: #FF0000;
}
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 .title {
font-weight: bold;
color: #ffcc00;
}
neko259
Changed themes.
r36 .link, a {
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 color: #afdcec;
}
neko259
Fixed post display in admin page. Fixed css in Mystic Dark.
r40 .block {
display: inline-block;
vertical-align: top;
}
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 .tag {
neko259
Changed tag color in MD theme
r531 color: #FFD37D;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 }
.post_id {
color: #fff380;
}
neko259
Fixed threads title in the browser title bar. Moving old threads to archive instead of deleting them.
r484 .post, .dead_post, .archive_post, #posts-table {
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 background: #333;
padding: 10px;
neko259
Added new markdown field. Added gets algorithm with regexes.
r39 clear: left;
neko259
Fixed wrapping of the long links on the small screes (mobile phones). This fixes #15
r73 word-wrap: break-word;
neko259
Another changes to MD theme
r665 border-top: 1px solid #777;
neko259
Fixed an error in the last CSS change
r666 border-bottom: 1px solid #777;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 }
neko259
Removed duplication borders in the post list
r667 .post + .post {
border-top: none;
}
.dead_post + .dead_post {
border-top: none;
}
.archive_post + .archive_post {
border-top: none;
}
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 .metadata {
Pavel Ryapolov
Minor changes to metadata style in MD theme
r349 padding-top: 5px;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 margin-top: 10px;
Pavel Ryapolov
Minor changes to metadata style in MD theme
r349 border-top: solid 1px #666;
neko259
Added new markdown field. Added gets algorithm with regexes.
r39 color: #ddd;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 }
neko259
Added form validation, added style for the tag panel. This fixes #13
r76 .navigation_panel, .tag_info {
neko259
Updated panels color in MD theme
r843 background: #222;
neko259
Minor style changes in MD theme
r663 margin-bottom: 5px;
margin-top: 5px;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 padding: 10px;
neko259
Minor style changes in MD theme
r663 border-bottom: solid 1px #888;
border-top: solid 1px #888;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 color: #eee;
}
neko259
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
r44 .navigation_panel .link {
neko259
Changed themes.
r36 border-right: 1px solid #fff;
font-weight: bold;
margin-right: 1ex;
padding-right: 1ex;
}
neko259
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
r44 .navigation_panel .link:last-child {
neko259
Changed themes.
r36 border-left: 1px solid #fff;
border-right: none;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 float: right;
neko259
Changed themes.
r36 margin-left: 1ex;
margin-right: 0;
padding-left: 1ex;
padding-right: 0;
}
neko259
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
r44 .navigation_panel::after, .post::after {
neko259
Changed themes.
r36 clear: both;
content: ".";
display: block;
height: 0;
line-height: 0;
visibility: hidden;
}
neko259
Removed borders from footer and header. Removed additional footer block....
r842 .header {
neko259
Made panels a bit more contrast
r844 border-bottom: solid 2px #ccc;
neko259
Removed borders from footer and header. Removed additional footer block....
r842 margin-bottom: 5px;
border-top: none;
margin-top: 0;
}
.footer {
neko259
Made panels a bit more contrast
r844 border-top: solid 2px #ccc;
neko259
Removed borders from footer and header. Removed additional footer block....
r842 margin-top: 5px;
border-bottom: none;
margin-bottom: 0;
}
neko259
Use <div> as a line break. Hell yeah!
r831 p, .br {
neko259
Changed themes.
r36 margin-top: .5em;
margin-bottom: .5em;
}
.post-form-w {
background: #333344;
neko259
Minor style changes in MD theme
r663 border-top: solid 1px #888;
border-bottom: solid 1px #888;
neko259
Changed themes.
r36 color: #fff;
padding: 10px;
neko259
Minor style changes in MD theme
r663 margin-bottom: 5px;
margin-top: 5px;
neko259
Changed themes.
r36 }
.form-row {
neko259
Updated form to a new style. Fixed mark manel
r680 width: 100%;
neko259
Changed themes.
r36 }
.form-label {
padding: .25em 1ex .25em 0;
neko259
Added new markdown field. Added gets algorithm with regexes.
r39 vertical-align: top;
neko259
Changed themes.
r36 }
.form-input {
padding: .25em 0;
}
neko259
Added form validation, added style for the tag panel. This fixes #13
r76 .form-errors {
neko259
Small style and forms rendering changes
r426 font-weight: bolder;
neko259
Added login functionality.
r144 vertical-align: middle;
neko259
Added form validation, added style for the tag panel. This fixes #13
r76 }
neko259
Updated form to a new style. Fixed mark manel
r680 .post-form input:not([name="image"]), .post-form textarea {
neko259
Changed themes.
r36 background: #333;
color: #fff;
border: solid 1px;
padding: 0;
neko259
Updated form to a new style. Fixed mark manel
r680 font: medium sans-serif;
width: 100%;
neko259
Changed themes.
r36 }
neko259
Disallow horizontal resize of form in MD theme
r920 .post-form textarea {
resize: vertical;
}
neko259
Changed themes.
r36 .form-submit {
neko259
Small style and forms rendering changes
r426 display: table;
margin-bottom: 1ex;
neko259
Added a compact form to the thread.
r676 margin-top: 1ex;
neko259
Changed themes.
r36 }
.form-title {
font-weight: bold;
neko259
Added a compact form to the thread.
r676 font-size: 2ex;
margin-bottom: 0.5ex;
neko259
Changed themes.
r36 }
neko259
Tweaked styles for search form
r696 .post-form input[type="submit"], input[type="submit"] {
neko259
Changed themes.
r36 background: #222;
neko259
Small style and forms rendering changes
r426 border: solid 2px #fff;
neko259
Changed themes.
r36 color: #fff;
neko259
Small style and forms rendering changes
r426 padding: 0.5ex;
}
input[type="submit"]:hover {
background: #060;
neko259
Changed themes.
r36 }
blockquote {
border-left: solid 2px;
padding-left: 5px;
color: #B1FB17;
margin: 0;
neko259
Fixed post display in admin page. Fixed css in Mystic Dark.
r40 }
.post > .image {
neko259
Added fixed image length. This fixes #52
r88 float: left;
margin: 0 1ex .5ex 0;
min-width: 1px;
text-align: center;
display: table-row;
neko259
Fixed post display in admin page. Fixed css in Mystic Dark.
r40 }
.post > .metadata {
clear: left;
neko259
Fixed get computing. Visually differing get posts in thread.
r42 }
.get {
font-weight: bold;
color: #d55;
neko259
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
r44 }
* {
text-decoration: none;
neko259
Compiling regexes for gets. #17 Added pagination. #28 Visually differing the dead (not bumpable) threads.
r46 }
.dead_post {
background-color: #442222;
neko259
#12 Added markdown extension for reflinks, quotes and autolinks.
r52 }
neko259
Fixed threads title in the browser title bar. Moving old threads to archive instead of deleting them.
r484 .archive_post {
background-color: #000;
}
rt@lightning
add class for mark buttons
r229 .mark_btn {
border: 1px solid;
neko259
Added a new format panel to the text form
r438 min-width: 2ex;
padding: 2px 2ex;
neko259
Fixed css, compiled translation file.
r240 }
.mark_btn:hover {
background: #555;
rt@lightning
add class for mark buttons
r229 }
neko259
#12 Added markdown extension for reflinks, quotes and autolinks.
r52 .quote {
neko259
Changed parser to show quotes and reflinks as they are posted, not with borders and '#' character.
r90 color: #92cf38;
neko259
Made quotes italic in MD theme.
r136 font-style: italic;
neko259
#12 Added spoilers and comments.
r56 }
neko259
Very alpha bbcode support (markdown removed)
r736 .multiquote {
neko259
Removed linked tags. Added changelog for 2.0. Fixed reply connection.
r740 padding: 3px;
neko259
Very alpha bbcode support (markdown removed)
r736 display: inline-block;
neko259
Removed linked tags. Added changelog for 2.0. Fixed reply connection.
r740 background: #222;
neko259
Made quote font smalled in MD theme
r773 border-style: solid;
border-width: 1px 1px 1px 4px;
font-size: 0.9em;
neko259
Very alpha bbcode support (markdown removed)
r736 }
neko259
#12 Added spoilers and comments.
r56 .spoiler {
background: white;
color: white;
}
.spoiler:hover {
neko259
Made spoiler in MD make text black on hover, not background.
r133 color: black;
neko259
#12 Added spoilers and comments.
r56 }
.comment {
neko259
Made comments prettier in Mystic Dark.
r99 color: #eb2;
neko259
Limit number of tags shown in the navigation bar to only the most popular ones.
r57 }
a:hover {
text-decoration: underline;
}
neko259
#44 Show last replies in the threads list.
r59
.last-replies {
margin-left: 3ex;
neko259
Small style changes
r532 margin-right: 3ex;
neko259
Added borders to the indented last replies block in MD theme
r787 border-left: solid 1px #777;
border-right: solid 1px #777;
neko259
#44 Show last replies in the threads list.
r59 }
neko259
Show only one border in the first last replies post when there are no skipped...
r826 .last-replies > .post:first-child {
border-top: none;
}
neko259
#44 Show last replies in the threads list.
r59 .thread {
margin-bottom: 3ex;
neko259
Another changes to MD theme
r665 margin-top: 1ex;
neko259
#44 Show last replies in the threads list.
r59 }
.post:target {
border: solid 2px white;
neko259
#12 Fixed formatting of comments and links. Added a style for target post in the white theme.
r62 }
pre{
white-space:pre-wrap
neko259
Added js popup for image viewing.
r63 }
li {
list-style-position: inside;
neko259
Changed fancybox skin a bit.
r65 }
.fancybox-skin {
position: relative;
background-color: #fff;
color: #ddd;
text-shadow: none;
}
.fancybox-image {
border: 1px solid black;
neko259
#37 Added javascript gallery mode for viewing thread in image-only mode.
r66 }
.image-mode-tab {
background: #444;
color: #eee;
neko259
Minor style changes in MD theme
r663 margin-top: 5px;
neko259
#37 Added javascript gallery mode for viewing thread in image-only mode.
r66 padding: 5px;
neko259
Minor style changes in MD theme
r663 border-top: 1px solid #888;
border-bottom: 1px solid #888;
neko259
#37 Added javascript gallery mode for viewing thread in image-only mode.
r66 }
.image-mode-tab > label {
margin: 0 1ex;
}
.image-mode-tab > label > input {
margin-right: .5ex;
}
#posts-table {
neko259
Minor style changes in MD theme
r663 margin-top: 5px;
margin-bottom: 5px;
neko259
Added form validation, added style for the tag panel. This fixes #13
r76 }
.tag_info > h2 {
margin: 0;
neko259
Made post info darker in Mystic Dark theme.
r94 }
.post-info {
color: #ddd;
neko259
Moved post-info block out of the message block
r668 margin-bottom: 1ex;
neko259
Made post info darker in Mystic Dark theme.
r94 }
neko259
Added missing JS translations. Added styles for refmaps. This refs #36
r124
neko259
Added admin actions (showing IP, post removal). Added user ranks. This refs #61, #12
r112 .moderator_info {
color: #e99d41;
neko259
Changed moderator panel style in MD theme
r578 float: right;
font-weight: bold;
neko259
Merged with default branch
r137 }
neko259
Added missing JS translations. Added styles for refmaps. This refs #36
r124 .refmap {
font-size: 0.9em;
color: #ccc;
margin-top: 1em;
neko259
Made borders rectangle in the MD theme.
r131 }
neko259
Added hover state to submit button in MD theme.
r138
neko259
Added star for tag subscribe link. Show the link on the tag view.
r179 .fav {
color: yellow;
}
.not_fav {
color: #ccc;
neko259
Cleaned up code in some modules. Added a new style for the contributor roles.
r203 }
.role {
text-decoration: underline;
neko259
Added a hidden antispam field to the forms.
r207 }
.form-email {
display: none;
}
neko259
Added padding to the footer in MD theme.
r220
neko259
Show bumplimit bar for threads. Added board logo to the authors page.
r281 .bar-value {
background: rgba(50, 55, 164, 0.45);
font-size: 0.9em;
neko259
Small fix for the bumplimit bar.
r282 height: 1.5em;
neko259
Show bumplimit bar for threads. Added board logo to the authors page.
r281 }
.bar-bg {
neko259
Small fix for the bumplimit bar.
r282 position: relative;
neko259
Minor style changes in MD theme
r663 border-top: solid 1px #888;
border-bottom: solid 1px #888;
margin-top: 5px;
neko259
Small fix for the bumplimit bar.
r282 overflow: hidden;
}
.bar-text {
padding: 2px;
position: absolute;
left: 0;
top: 0;
Pavel Ryapolov
Made fonts in textarea normal size in some browsers
r298 }
neko259
Added next and previous page links
r343
.page_link {
background: #444;
neko259
Updated style for page links in md theme.
r683 border-top: solid 1px #888;
border-bottom: solid 1px #888;
neko259
Added next and previous page links
r343 padding: 5px;
color: #eee;
neko259
Updated style for page links in md theme.
r683 font-size: 2ex;
Pavel Ryapolov
Minor changes to metadata style in MD theme
r349 }
neko259
Fixed saving user setting in some DBs. Added 'skippen N replies' label in...
r414
.skipped_replies {
neko259
Updates to the skipped replies label in MD theme
r802 padding: 5px;
margin-left: 3ex;
margin-right: 3ex;
border-left: solid 1px #888;
border-right: solid 1px #888;
neko259
Show only one border in the first last replies post when there are no skipped...
r826 border-bottom: solid 1px #888;
neko259
Updates to the skipped replies label in MD theme
r802 background: #000;
neko259
Fixed saving user setting in some DBs. Added 'skippen N replies' label in...
r414 }
neko259
Visually deferring current page in page counter
r455
neko259
Made mode switching links a bit less complicated in style
r473 .current_page {
neko259
Visually deferring current page in page counter
r455 padding: 2px;
neko259
New page selector in MD theme
r845 background-color: #afdcec;
color: #000;
neko259
Added metadata to the gallery. Added links to search the image by the online search engines
r460 }
neko259
Made mode switching links a bit less complicated in style
r473 .current_mode {
font-weight: bold;
}
neko259
Added metadata to the gallery. Added links to search the image by the online search engines
r460 .gallery_image {
border: solid 1px;
padding: 0.5ex;
margin: 0.5ex;
text-align: center;
neko259
Added new style for code blocks
r469 }
code {
border: dashed 1px #ccc;
background: #111;
padding: 2px;
font-size: 1.2em;
display: inline-block;
}
neko259
Made code blocks overflow
r476
pre {
overflow: auto;
}
neko259
Updated image previews in MD style
r505
.img-full {
background: #222;
border: solid 1px white;
}
neko259
Made tags list page look like tag cloud
r511
.tag_item {
display: inline-block;
neko259
Changed tag list style a bit
r518 border: 1px dashed #666;
margin: 0.2ex;
padding: 0.1ex;
neko259
Changed tag color in MD theme
r531 }
neko259
Tweaked styles for search form
r696
#id_models li {
list-style: none;
}
#id_q {
margin-left: 1ex;
}
ul {
padding-left: 0px;
}
neko259
Added js code highlight
r703
neko259
Added source parameter to quotes
r755 .quote-header {
border-bottom: 2px solid #ddd;
margin-bottom: 1ex;
padding-bottom: .5ex;
color: #ddd;
font-size: 1.2em;
}
neko259
Added signature model. Use signatures in posts
r820 .global-id {
font-weight: bolder;
opacity: .5;
}
neko259
Added KeyPair model for signing and verifying data, that will be user for...
r793 /* Post */
.post > .message, .post > .image {
padding-left: 1em;
}
neko259
Made code colors dark in MD theme
r712 /* Reflink preview */
neko259
Added js code highlight
r703 .post_preview {
neko259
Made post preview border less 'invasive'
r711 border-left: 1px solid #777;
border-right: 1px solid #777;
neko259
Added js code highlight
r703 }
neko259
Made code colors dark in MD theme
r712
/* Code highlighter */
.hljs {
color: #fff;
background: #000;
display: inline-block;
}
neko259
Made hjs titles visible in MD theme
r751
.hljs, .hljs-subst, .hljs-tag .hljs-title, .lisp .hljs-title, .clojure .hljs-built_in, .nginx .hljs-title {
color: #fff;
}