##// END OF EJS Templates
Removed hiding the form row with CSS as it causes problems with error rows
Removed hiding the form row with CSS as it causes problems with error rows

File last commit:

r438:5e47a9bc default
r450:c3103f8c default
Show More
base_page.css
358 lines | 4.6 KiB | text/css | CssLexer
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 html {
background: #555;
color: #ffffff;
}
#admin_panel {
background: #FF0000;
color: #00FF00
}
neko259
Merged with the old validation changes.
r75 .input_field {
}
.input_field_name {
}
.input_field_error {
color: #FF0000;
}
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 .title {
font-weight: bold;
color: #ffcc00;
neko259
Small design changes. Count board speed since yesterday, not today
r411 font-size: 2ex;
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 }
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 {
color: #b4cfec;
}
.post_id {
color: #fff380;
}
neko259
Added post style to the posts table (used in gallery).
r173 .post, .dead_post, #posts-table {
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 background: #333;
margin: 5px;
padding: 10px;
neko259
Made borders rectangle in the MD theme.
r131 border: solid 1px #888;
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
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 themes support. Added 'snow white' theme by Mystra_x64.
r35 font-size: 0.9em;
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
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 background: #444;
margin: 5px;
padding: 10px;
neko259
Made borders rectangle in the MD theme.
r131 border: 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;
}
p {
margin-top: .5em;
margin-bottom: .5em;
}
.post-form-w {
display: table;
background: #333344;
neko259
Made borders rectangle in the MD theme.
r131 border: solid 1px #888;
neko259
Changed themes.
r36 color: #fff;
padding: 10px;
neko259
Split up post model into post and thread to normalise models. Still need some refactoring
r398 margin: 5px;
neko259
Changed themes.
r36 }
.form-row {
display: table-row;
}
neko259
Added form validation, added style for the tag panel. This fixes #13
r76 .form-label, .form-input, .form-errors {
neko259
Changed themes.
r36 display: table-cell;
}
.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
Changed themes.
r36 .post-form input, .post-form textarea {
background: #333;
color: #fff;
border: solid 1px;
padding: 0;
width: 100%;
Pavel Ryapolov
Made fonts in textarea normal size in some browsers
r298 font: medium sans;
neko259
Changed themes.
r36 }
.form-submit {
neko259
Small style and forms rendering changes
r426 display: table;
margin-bottom: 1ex;
neko259
Changed themes.
r36 }
.form-title {
font-weight: bold;
neko259
Changed form title style in MD theme
r338 font-size: 2.5ex;
text-decoration: underline;
neko259
Changed themes.
r36 }
input[type="submit"] {
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
Returned the image height because the page is jumping too much on image load.
r148
height: 150px;
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 }
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 }
.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;
font-style: italic;
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;
}
.thread {
margin-bottom: 3ex;
}
.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;
display: table;
margin: 5px;
padding: 5px;
neko259
Made 1 more element square in the MD theme.
r132 border: 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 {
margin: 5px;
neko259
Added form validation, added style for the tag panel. This fixes #13
r76 }
.tag_info {
display: table;
}
.tag_info > h2 {
margin: 0;
neko259
Made post info darker in Mystic Dark theme.
r94 }
.post-info {
color: #ddd;
}
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
Added a dashed style to the moderator info.
r150 border: dashed 1px;
padding: 3px;
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
.footer {
margin: 5px;
}
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
Show bumplimit bar for threads. Added board logo to the authors page.
r281 border: solid 1px #888;
margin: 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 {
display: table;
background: #444;
margin: 5px;
border: solid 1px #888;
padding: 5px;
font-weight: bolder;
color: #eee;
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 {
margin: 5px;
}