##// END OF EJS Templates
Show thread OPs in the landing page instead of link and title list
Show thread OPs in the landing page instead of link and title list

File last commit:

r1781:de6df255 default
r1793:9acfb664 default
Show More
base.css
185 lines | 2.4 KiB | text/css | CssLexer
neko259
Added hover popups for the reflinks.
r222 .ui-button {
display: none;
}
.ui-dialog-content {
padding: 0;
min-height: 0;
rt@lightning
Add image preview
r238 }
neko259
Fixed css, compiled translation file.
r240 .mark_btn {
rt@lightning
fix
r239 cursor: pointer;
}
rt@lightning
Add image preview
r238 .img-full {
position: fixed;
background-color: #CCC;
border: 1px solid #000;
cursor: pointer;
neko259
Added strikethrough text to the text parser
r330 }
.strikethrough {
text-decoration: line-through;
}
neko259
Added post preview popups
r352
.post_preview {
z-index: 300;
position:absolute;
}
neko259
Added metadata to the gallery. Added links to search the image by the online search engines
r460
.gallery_image {
display: inline-block;
neko259
Remove post form when printing
r645 }
@media print {
.post-form-w {
display: none;
}
}
neko259
Added image preview in the forms
r673
neko259
Added a compact form to the thread.
r676 input[name="image"] {
neko259
Added image preview in the forms
r673 display: block;
width: 100px;
height: 100px;
cursor: pointer;
position: absolute;
opacity: 0;
z-index: 1;
}
neko259
Updated form to a new style. Fixed mark manel
r680 .file_wrap {
neko259
Added image preview in the forms
r673 width: 100px;
height: 100px;
border: solid 1px white;
neko259
Added a compact form to the thread.
r676 display: inline-block;
neko259
Added image preview in the forms
r673 }
neko259
Updated form to a new style. Fixed mark manel
r680 form > .file_wrap {
float: left;
}
.file-thumb {
neko259
Added image preview in the forms
r673 width: 100px;
height: 100px;
background-size: cover;
background-position: center;
}
neko259
Added a compact form to the thread.
r676
.compact-form-text {
margin-left:110px;
}
neko259
Updated form to a new style. Fixed mark manel
r680 textarea, input {
neko259
Added a compact form to the thread.
r676 -moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
neko259
When swapping the form view, move elements of one form instead of swapping 2...
r698 }
.compact-form-text > textarea {
height: 100px;
width: 100%;
}
neko259
Made "subscribe" and "hide" in tags as buttons with forms.
r1037
.post-button-form {
display: inline;
}
neko259
Made thread update button prettier
r1168 .post-button-form > button, #autoupdate {
neko259
Made "subscribe" and "hide" in tags as buttons with forms.
r1037 border: none;
neko259
Don't use JS and links in tag buttons. Use <button> instead
r1039 margin: inherit;
padding: inherit;
background: none;
font-size: inherit;
neko259
Use pointer cursor in post button forms
r1427 cursor: pointer;
neko259
Made "subscribe" and "hide" in tags as buttons with forms.
r1037 }
neko259
Second clik on the "reply" button in thread closes the form
r1108
#form-close-button {
display: none;
}
neko259
Setting for image view mode: in post (simple) or in popup
r1122
.post-image-full {
width: 100%;
neko259
Properly resuize full image
r1287 height: auto;
neko259
Setting for image view mode: in post (simple) or in popup
r1122 }
neko259
Added AJAX text preview to the form.
r1217
#preview-text {
display: none;
}
neko259
Center random images
r1247
.random-images-table {
text-align: center;
}
neko259
Use more mobile friendly design for random images (no tables, just blocks that...
r1248 .random-images-table > div {
neko259
Center random images
r1247 margin-left: auto;
margin-right: auto;
}
neko259
Show tag image to the left
r1262
.tag-image, .tag-text-data {
display: inline-block;
}
.tag-text-data > h2 {
margin: 0;
}
.tag-image {
margin-right: 5px;
}
neko259
Show id of the post you reply to in the form title
r1289
.reply-to-message {
display: none;
}
neko259
Even prettier trip codes!
r1301
.tripcode {
padding: 2px;
neko259
Added favorite thread popup
r1340 }
#fav-panel {
display: none;
margin: 1ex;
}
neko259
Added ability to hide a post
r1366 .hidden_post {
opacity: 0.2;
}
.hidden_post:hover {
opacity: 1;
}
neko259
Added ability to create monochrome threads
r1434
neko259
Make only images greyscale. Added chrome support
r1435 .monochrome > .image > .thumb > img {
neko259
Added ability to create monochrome threads
r1434 filter: grayscale(100%);
neko259
Make only images greyscale. Added chrome support
r1435 -webkit-filter: grayscale(100%);
}
neko259
Ability to switch file source field in posting form
r1461
neko259
Added quotation button over the selection
r1521 #quote-button {
position: absolute;
display: none;
cursor: pointer;
neko259
Quote button should be on top
r1642 z-index: 400;
}
neko259
Added asterisk to required field in forms
r1654
.required-field:before {
content: '* ';
}
neko259
Allow inserting text hints
r1662
.hint {
border-bottom: dashed 1px;
neko259
Show help cursor on hints
r1664 cursor: help;
neko259
Allow inserting text hints
r1662 }
neko259
Non-image file icons are inverted on hover
r1673
.url-image:hover {
filter: invert(100%);
}
neko259
Added landing page which will be the default on /
r1732
.landing-tags, .landing-threads, .landing-images {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.landing-images {
text-align: center;
}