2017-07-17 10:23:42 +00:00
/* Patch for Edge, until they fix emojis in arial x.x */
@ supports ( -ms-ime-align : auto ) { . user_content { font-family : Segoe UI Emoji , arial ; } }
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
: root {
--main-block-color : rgb ( 61 , 61 , 61 ) ;
--main-text-color : white ;
--dim-text-color : rgb ( 205 , 205 , 205 ) ;
--main-background-color : # 222222 ;
--inner-background-color : # 333333 ;
--input-background-color : # 444444 ;
--input-border-color : # 555555 ;
--input-text-color : # 999999 ;
2018-02-03 05:47:14 +00:00
--bright-input-background-color : # 555555 ;
--bright-input-border-color : # 666666 ;
--input-text-color : # a3a3a3 ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
}
2017-07-17 10:23:42 +00:00
body {
font-family : arial ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
color : var ( --main-text-color ) ;
background-color : var ( --main-background-color ) ;
2017-07-17 10:23:42 +00:00
margin : 0 ;
}
2018-05-27 09:36:35 +00:00
* :: selection {
2017-09-28 22:16:34 +00:00
background-color : hsl ( 0 , 0 % , 75 % ) ;
color : hsl ( 0 , 0 % , 20 % ) ;
font-weight : 100 ;
}
2017-07-17 10:23:42 +00:00
# back {
margin-left : auto ;
margin-right : auto ;
width : 70 % ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --inner-background-color ) ;
2017-07-17 10:23:42 +00:00
position : relative ;
top : -2px ;
}
2018-05-28 06:27:12 +00:00
# main {
padding-bottom : 5px ;
}
2017-07-17 10:23:42 +00:00
2019-05-18 06:50:43 +00:00
# main_menu {
2017-07-17 10:23:42 +00:00
list-style-type : none ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --main-block-color ) ;
border-bottom : 1px solid var ( --main-background-color ) ;
2017-07-17 10:23:42 +00:00
padding-left : 15 % ;
padding-right : 15 % ;
margin : 0 ;
2017-08-13 11:22:34 +00:00
height : 41px ;
2017-07-17 10:23:42 +00:00
}
2019-05-18 06:50:43 +00:00
. menu_left , . menu_right li {
2017-07-17 10:23:42 +00:00
float : left ;
2017-08-13 11:22:34 +00:00
height : 29 . 5px ;
2017-07-17 10:23:42 +00:00
padding-top : 12px ;
margin : 0 ;
}
. menu_left {
margin-right : 10px ;
}
. menu_right {
float : right ;
}
2019-05-18 06:50:43 +00:00
# main_menu # menu_overview {
2017-07-17 10:23:42 +00:00
margin-right : 13px ;
margin-left : 10px ;
2017-07-29 10:36:39 +00:00
font-size : 16px ;
2017-07-17 10:23:42 +00:00
}
2019-05-18 06:50:43 +00:00
# main_menu . menu_left : not ( # menu_overview ) {
2017-07-17 10:23:42 +00:00
font-size : 15px ;
padding-top : 13px ;
}
. alert_bell {
float : right ;
}
. menu_alerts {
2017-07-29 10:36:39 +00:00
float : right ;
2017-07-17 10:23:42 +00:00
padding-top : 14px ;
}
. alert_counter {
background-color : rgb ( 200 , 0 , 0 ) ;
border-radius : 2px ;
2017-08-13 11:22:34 +00:00
font-size : 11px ;
2017-07-17 10:23:42 +00:00
padding : 3px ;
float : right ;
position : relative ;
top : -1px ;
}
. alert_aftercounter {
float : right ;
margin-right : 4px ;
2017-08-13 11:22:34 +00:00
font-size : 14px ;
2017-07-17 10:23:42 +00:00
}
. alert_aftercounter : before {
2018-12-14 04:08:53 +00:00
content : "{{lang " menu_alerts " . }}" ;
2017-07-17 10:23:42 +00:00
}
2018-02-03 05:47:14 +00:00
. menu_alerts . alertList , . hide_on_big , . show_on_mobile {
2017-07-17 10:23:42 +00:00
display : none ;
}
2018-02-03 05:47:14 +00:00
. auto_hide {
display : none ! important ;
}
2017-07-17 10:23:42 +00:00
. selectedAlert . alertList {
2017-08-17 11:13:49 +00:00
display : block ;
position : absolute ;
top : 44px ;
float : left ;
width : 200px ;
z-index : 50 ;
right : 15 % ;
font-size : 13px ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --inner-background-color ) ;
2017-08-17 11:13:49 +00:00
}
. alertItem {
margin-bottom : 2px ;
}
. alertItem . withAvatar {
height : 40px ;
background-size : 48px ;
background-repeat : no-repeat ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --main-block-color ) ;
2017-08-17 11:13:49 +00:00
padding-left : 56px ;
padding-top : 8px ;
2017-07-17 10:23:42 +00:00
}
a {
text-decoration : none ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
color : var ( --main-text-color ) ;
2017-07-17 10:23:42 +00:00
}
2018-03-08 03:59:47 +00:00
. alertbox {
display : flex ;
}
2017-07-29 10:36:39 +00:00
. alert {
padding-bottom : 12px ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --main-block-color ) ;
2018-03-08 03:59:47 +00:00
border-left : 4px solid hsl ( 21 , 100 % , 50 % ) ;
2017-07-29 10:36:39 +00:00
padding : 12px ;
display : block ;
2018-03-08 03:59:47 +00:00
margin-top : 8px ;
margin-bottom : -3px ;
margin-left : 8px ;
margin-right : 8px ;
width : 100 % ;
2017-07-29 10:36:39 +00:00
}
2017-07-17 10:23:42 +00:00
. rowblock {
margin-left : 8px ;
margin-right : 8px ;
}
. opthead , . rowhead , . colstack_head {
padding-bottom : 0px ;
padding-top : 3px ! important ;
2017-08-18 12:16:56 +00:00
white-space : nowrap ;
2017-07-17 10:23:42 +00:00
}
. rowblock : not ( . opthead ) : not ( . colstack_head ) : not ( . rowhead ) . rowitem {
2017-09-28 22:16:34 +00:00
font-size : 15px ; /*16px*/
2017-07-17 10:23:42 +00:00
}
2017-07-29 10:36:39 +00:00
. rowblock : last-child , . colstack_item : last-child {
2017-07-17 10:23:42 +00:00
padding-bottom : 10px ;
}
. rowitem , . formitem {
2017-07-29 10:36:39 +00:00
padding-bottom : 12px ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --main-block-color ) ;
2017-07-29 10:36:39 +00:00
margin-top : 8px ;
padding : 12px ;
2017-07-17 10:23:42 +00:00
}
2019-01-21 12:27:59 +00:00
. rowitem h1 , . rowitem h2 {
2017-08-27 09:33:45 +00:00
font-size : 16px ;
2019-01-21 12:27:59 +00:00
display : inline ;
}
2019-04-09 05:33:39 +00:00
h1 , h2 , h3 , h4 , h5 {
2020-02-18 22:43:55 +00:00
-webkit-margin-before : 0 ;
-webkit-margin-after : 0 ;
margin-block-start : 0 ;
margin-block-end : 0 ;
margin-top : 0 ;
margin-bottom : 0 ;
2019-01-21 12:27:59 +00:00
font-weight : normal ;
2017-08-27 09:33:45 +00:00
}
2017-07-17 10:23:42 +00:00
. rowsmall {
font-size : 12px ;
}
2018-05-28 06:27:12 +00:00
. colstack {
display : flex ;
}
2017-07-17 10:23:42 +00:00
. colstack_left , . colstack_right {
margin-left : 8px ;
}
. colstack_left {
float : left ;
width : 30 % ;
}
. colstack_right {
float : left ;
width : calc ( 70 % - 24px ) ;
}
2019-01-21 12:27:59 +00:00
. colstack_left : empty ,
. colstack_right : empty ,
. show_on_edit : not ( . edit_opened ) ,
. hide_on_edit . edit_opened ,
. show_on_block_edit : not ( . edit_opened ) ,
. hide_on_block_edit . edit_opened ,
. link_select : not ( . link_opened ) {
2017-07-17 10:23:42 +00:00
display : none ;
}
2017-08-27 09:33:45 +00:00
. colline {
font-size : 14px ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --main-block-color ) ;
2017-08-27 09:33:45 +00:00
margin-top : 5px ;
padding : 10px ;
}
2017-12-10 03:43:30 +00:00
/* Align to right in a flex head */
2019-06-27 23:35:34 +00:00
. to_left {
float : left ;
}
2017-09-23 19:57:13 +00:00
. to_right {
2017-12-10 03:43:30 +00:00
float : right ;
2017-09-23 19:57:13 +00:00
margin-left : auto ;
}
2017-08-20 09:39:02 +00:00
/* Topic View */
2017-09-10 16:57:22 +00:00
/* TODO: How should we handle the sticky headers? */
2019-06-27 23:35:34 +00:00
. topic_sticky_head { }
2017-08-20 09:39:02 +00:00
2017-10-30 23:34:38 +00:00
/* TODO: Add the avatars to the forum list */
2018-05-27 09:36:35 +00:00
. forum_list . forum_nodesc {
font-style : italic ;
}
2017-10-30 23:34:38 +00:00
. extra_little_row_avatar {
display : none ;
}
. shift_left {
float : left ;
}
. shift_right {
float : right ;
}
2019-04-17 10:12:35 +00:00
. action_item . action_icon {
font-size : 18px ;
padding-right : 5px ;
}
2017-09-10 16:57:22 +00:00
/* TODO: Rewrite the closed topic header so that it looks more consistent with the rest of the theme */
2017-08-20 09:39:02 +00:00
. topic_closed_head . topic_status_closed {
margin-bottom : -10px ;
font-size : 19px ;
2017-07-17 10:23:42 +00:00
}
. post_item {
background-size : 128px ;
padding-left : calc ( 128px + 12px ) ;
}
2019-02-28 08:42:25 +00:00
. user_content {
word-break : break-word ;
}
2019-04-09 05:33:39 +00:00
. user_content h2 {
font-size : 18px ;
}
. user_content h2 , . user_content h3 {
margin-bottom : 12px ;
display : block ;
}
. user_content h4 {
margin-bottom : 8px ;
display : block ;
}
. user_content strong h2 , . user_content strong h3 , . user_content strong h4 {
font-weight : bold ;
}
2019-04-10 07:40:47 +00:00
red {
color : red ;
}
2019-04-17 01:57:31 +00:00
. update_buttons . add_file_button {
display : none ;
}
2017-07-17 10:23:42 +00:00
. controls {
width : 100 % ;
display : inline-block ;
margin-top : 20px ;
}
. staff_post {
border : 1px solid rgb ( 101 , 71 , 101 )
}
. user_tag {
float : right ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
color : var ( --dim-text-color ) ;
2017-07-17 10:23:42 +00:00
}
. real_username {
float : left ;
margin-right : 7px ;
}
. mod_button {
margin-right : 5px ;
display : block ;
float : left ;
}
. mod_button button {
border : none ;
background : none ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
color : var ( --main-text-color ) ;
2017-07-17 10:23:42 +00:00
font-size : 12px ;
padding : 0 ;
}
. like_label : before {
2018-12-14 04:08:53 +00:00
content : "{{lang " topic . plus_one " . }}" ;
} { { $ out : = . } }
2019-03-25 03:30:56 +00:00
{ { r a n g e ( t o A r r " q u o t e " " e d i t " " d e l e t e " " p i n " " l o c k " " u n l o c k " " u n p i n " " i p " " f l a g " ) } }
2018-12-14 04:08:53 +00:00
. { { . } } _label : before {
content : "{{lang (concat " topic . " . " _button_text ") ($out) }}" ;
} { { e n d } }
2017-07-17 10:23:42 +00:00
2018-03-31 05:25:27 +00:00
. like_count_label , . like_count {
display : none ;
}
2017-07-17 10:23:42 +00:00
. like_count_label : before {
2018-12-14 04:08:53 +00:00
content : "{{lang " topics_likes_suffix " . }}" ;
2017-07-17 10:23:42 +00:00
}
2018-12-14 04:08:53 +00:00
. has_likes . like_count_label , . has_likes . like_count {
2017-07-17 10:23:42 +00:00
font-size : 12px ;
display : block ;
float : left ;
line-height : 19px ;
}
2018-03-31 05:25:27 +00:00
. has_likes . like_count {
2017-07-17 10:23:42 +00:00
margin-right : 2px ;
}
. like_count : before {
2018-12-14 04:08:53 +00:00
content : "{{lang " pipe " . }}" ;
2017-07-17 10:23:42 +00:00
margin-right : 5px ;
}
. level_label , . level {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
color : var ( --dim-text-color ) ;
2017-07-17 10:23:42 +00:00
float : right ;
}
2019-05-11 23:07:24 +00:00
. level_label : before {
content : "{{lang " topic . level_tooltip " . }}" ;
}
2017-07-17 10:23:42 +00:00
. level {
margin-left : 3px ;
}
2019-11-06 21:15:43 +00:00
. hide_spoil {
background-color : grey ;
color : grey ;
}
. hide_spoil img {
border : 0 ;
clip : rect ( 0 0 0 0 ) ;
height : 1px ;
margin : -1px ;
overflow : hidden ;
padding : 50px ;
white-space : nowrap ;
width : 1px ;
background-color : grey ;
}
. hide_spoil img {
content : " " ;
}
2017-07-29 10:36:39 +00:00
. formrow . real_first_child , . formrow : first-child {
margin-top : 8px ;
2017-07-17 10:23:42 +00:00
}
2017-07-29 10:36:39 +00:00
. formrow . real_first_child . formitem , . formrow : first-child . formitem {
2017-07-17 10:23:42 +00:00
padding-top : 12px ;
}
. formrow : last-child . formitem {
padding-bottom : 12px ;
}
2019-03-11 08:47:45 +00:00
. login_button_row {
display : flex ;
}
. login_button_row . formitem > * {
padding-top : 5px ;
}
. fall_opts {
display : flex ;
}
2018-02-26 09:07:00 +00:00
. dont_have_account {
2019-03-11 08:47:45 +00:00
margin-left : auto ;
padding-right : 0px ;
}
. dont_have_account : after {
content : "|" ;
padding-left : 8px ;
padding-right : 8px ;
}
. forgot_password {
padding-left : 0px ;
}
. formitem . dont_have_account , . formitem . forgot_password {
color : # 909090 ;
2018-02-26 09:07:00 +00:00
font-size : 12px ;
font-weight : normal ;
2019-03-11 08:47:45 +00:00
padding-top : 11px ;
2018-02-26 09:07:00 +00:00
}
2017-07-17 10:23:42 +00:00
textarea {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --input-background-color ) ;
border-color : var ( --input-border-color ) ;
color : var ( --input-text-color ) ;
2017-07-29 10:36:39 +00:00
width : calc ( 100 % - 15px ) ;
min-height : 80px ;
}
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
textarea : focus , input : focus , select : focus , button : focus {
2017-07-29 10:36:39 +00:00
outline-color : rgb ( 95 , 95 , 95 ) ;
}
textarea . large {
min-height : 120px ;
margin-top : 1px ;
padding : 5px ;
display : block ;
2017-07-17 10:23:42 +00:00
}
2018-05-27 09:36:35 +00:00
. formitem button , . formbutton , . mod_floater_submit , . pane_buttons button {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --input-background-color ) ;
border : 1px solid var ( --input-border-color ) ;
color : var ( --input-text-color ) ;
2017-07-17 10:23:42 +00:00
padding : 7px ;
padding-bottom : 6px ;
font-size : 13px ;
}
2018-05-27 09:36:35 +00:00
. mod_floater_submit {
padding : 5px ;
padding-bottom : 4px ;
margin-left : 2px ;
}
. pane_buttons button {
padding : 5px ;
padding-bottom : 4px ;
}
2017-07-29 10:36:39 +00:00
. formrow {
flex-direction : row ;
display : flex ;
}
. formitem {
margin-top : 0px ;
padding-bottom : 2px ;
padding-top : 3px ;
flex-grow : 2 ;
}
. formlabel {
flex-grow : 0 ;
width : 20 % ;
padding-top : 9px ;
}
/* If the form label is on the right */
. formlabel : not ( : first-child ) {
font-size : 15px ;
flex-grow : 2 ;
}
. formrow . real_first_child . formlabel , . formrow : first-child . formlabel {
padding-top : 17px ;
}
/* Too big compared to the other items in the Control Panel and Account Panel */
/ * . colstack_item . formrow . real_first_child , . colstack_item . formrow : first-child {
margin-top : 8px ;
} * /
. colstack_item . formrow . real_first_child , . colstack_item . formrow : first-child {
margin-top : 3px ;
}
. thin_margins . formrow . real_first_child , . thin_margins . formrow : first-child {
margin-top : 5px ;
}
. formitem a {
font-size : 14px ;
}
. rowmenu . rowitem , . rowlist . rowitem , . rowlist . formitem {
margin-top : 3px ;
font-size : 13px ;
padding : 10px ;
}
2017-08-15 13:47:56 +00:00
. menu_stats {
font-size : 12px ;
}
/* Mini paginators aka panel paginators */
. pageset {
margin-top : 4px ;
2017-09-25 00:48:35 +00:00
display : flex ;
flex-direction : row ;
2018-05-28 06:27:12 +00:00
margin-left : 8px ;
margin-bottom : 8px ;
2017-08-15 13:47:56 +00:00
}
. pageitem {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --main-block-color ) ;
2017-08-15 13:47:56 +00:00
padding : 10px ;
margin-right : 4px ;
font-size : 13px ;
}
2017-07-29 10:36:39 +00:00
2017-12-19 03:53:13 +00:00
. bgsub {
display : none ;
}
2017-07-29 10:36:39 +00:00
. rowlist . bgavatars . rowitem {
background-repeat : no-repeat ;
background-size : 40px ;
padding-left : 46px ;
}
2017-09-23 19:57:13 +00:00
. bgavatars : not ( . rowlist ) . rowitem {
background-repeat : no-repeat ;
background-size : 40px ;
padding-left : 46px ;
}
2017-07-29 10:36:39 +00:00
. rowlist . formrow , . rowlist . formrow : first-child {
margin-top : 0px ;
}
2019-06-27 23:35:34 +00:00
. loglist . to_left small {
margin-left : 2px ;
font-size : 12px ;
}
. loglist . to_right span {
font-size : 14px ;
}
2017-07-29 10:36:39 +00:00
2018-06-17 07:28:18 +00:00
input {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --input-background-color ) ;
border : 1px solid var ( --input-border-color ) ;
color : var ( --input-text-color ) ;
2017-07-29 10:36:39 +00:00
padding-bottom : 6px ;
font-size : 13px ;
padding : 5px ;
width : calc ( 100 % - 16px ) ;
}
2018-02-15 13:15:27 +00:00
select {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --input-background-color ) ;
border : 1px solid var ( --input-border-color ) ;
color : var ( --input-text-color ) ;
2017-07-29 10:36:39 +00:00
font-size : 13px ;
padding : 4px ;
}
. rowlist . formitem select {
padding : 2px ;
font-size : 11px ;
margin-top : -5px ;
}
input , select , textarea {
caret-color : rgb ( 95 , 95 , 95 ) ;
}
. form_middle_button {
margin-left : auto ;
margin-right : auto ;
display : block ;
margin-top : 5px ;
}
2017-12-10 03:43:30 +00:00
. little_row_avatar {
display : none ;
}
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
. topic_create_form . topic_board_row . formitem , . topic_create_form . topic_name_row . formitem {
padding-bottom : 5px ;
}
. topic_create_form input , . topic_create_form select {
padding : 7px ;
2018-05-15 05:59:52 +00:00
font-size : 13px ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
}
. topic_create_form select {
padding : 6px ;
}
. topic_create_form input {
width : calc ( 100 % - 14px ) ;
}
. topic_create_form textarea , . topic_reply_form textarea {
2018-05-15 05:59:52 +00:00
width : calc ( 100 % - 26px ) ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
min-height : 80px ;
2018-05-15 05:59:52 +00:00
font-family : arial ;
font-size : 14px ;
padding : 12px ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
}
. topic_create_form textarea {
padding : 7px ;
width : calc ( 100 % - 14px ) ;
}
2017-10-12 03:24:14 +00:00
. quick_button_row . formitem , . quick_create_form . upload_file_dock {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
display : flex ;
}
2018-02-03 05:47:14 +00:00
. quick_create_form . add_file_button , . quick_create_form # add_poll_button {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
margin-left : 8px ;
}
2017-10-12 03:24:14 +00:00
. quick_create_form . close_form {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
margin-left : auto ;
}
2017-10-12 03:24:14 +00:00
. quick_create_form . uploadItem {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
display : inline-block ;
margin-left : 8px ;
background-size : 25px 30px ;
background-repeat : no-repeat ;
padding-left : 30px ;
}
2018-05-28 06:27:12 +00:00
. footBlock {
margin-top : -2px ;
display : flex ;
}
. footer {
width : 70 % ;
margin-left : auto ;
margin-right : auto ;
}
2018-11-17 02:36:02 +00:00
. elapsed {
display : none ;
}
2017-11-29 02:34:02 +00:00
# poweredByHolder {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --main-block-color ) ;
2017-09-10 16:57:22 +00:00
padding : 10px ;
font-size : 14px ;
padding-left : 13px ;
padding-right : 13px ;
clear : left ;
height : 25px ;
}
2017-11-29 02:34:02 +00:00
# poweredByHolder select {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --input-background-color ) ;
border : 1px solid var ( --input-border-color ) ;
color : var ( --input-text-color ) ;
2017-09-10 16:57:22 +00:00
font-size : 13px ;
padding : 4px ;
}
2017-09-13 15:09:13 +00:00
# poweredBy {
float : left ;
margin-top : 4px ;
}
# poweredBy span {
font-size : 12px ;
}
2019-05-11 23:07:24 +00:00
# themeSelector {
float : right ;
}
2017-09-10 16:57:22 +00:00
2018-02-03 05:47:14 +00:00
. poll_item {
display : flex ;
}
. poll_option {
margin-bottom : 3px ;
}
input [ type = checkbox ] {
display : none ;
}
input [ type = checkbox ] + label {
display : inline-block ;
width : 12px ;
height : 12px ;
margin-bottom : -2px ;
border : 1px solid var ( --bright-input-border-color ) ;
background-color : var ( --bright-input-background-color ) ;
}
input [ type = checkbox ] : checked + label . sel {
display : inline-block ;
width : 5px ;
height : 5px ;
background-color : var ( --bright-input-background-color ) ;
}
input [ type = checkbox ] + label . poll_option_label {
width : 14px ;
height : 14px ;
margin-right : 3px ;
background-color : var ( --bright-input-background-color ) ;
border : 1px solid var ( --bright-input-border-color ) ;
color : var ( --bright-input-text-color ) ;
}
input [ type = checkbox ] : checked + label . poll_option_label . sel {
display : inline-block ;
width : 10px ;
height : 10px ;
margin-left : 3px ;
background : var ( --bright-input-border-color ) ;
}
2018-02-15 13:15:27 +00:00
. pollinput {
display : flex ;
margin-bottom : 8px ;
}
. quick_create_form . pollinputlabel {
display : none ;
}
2018-02-03 05:47:14 +00:00
/ * # poll_option_text_0 {
color : hsl ( 359 , 98 % , 43 % ) ;
} * /
. poll_buttons {
margin-top : 12px ;
}
. poll_buttons button {
background-color : var ( --bright-input-background-color ) ;
border : 1px solid var ( --bright-input-border-color ) ;
color : var ( --bright-input-text-color ) ;
padding : 7px ;
padding-bottom : 6px ;
font-size : 13px ;
}
2019-04-10 07:40:47 +00:00
. poll_buttons > * : not ( : first-child ) {
margin-left : 5px ;
}
2018-02-03 05:47:14 +00:00
. poll_results {
margin-left : auto ;
max-height : 120px ;
}
2017-07-29 10:36:39 +00:00
/* Forum View */
2017-09-28 22:16:34 +00:00
. rowhead , . opthead , . colstack_head , . rowhead . rowitem {
2017-07-29 10:36:39 +00:00
display : flex ;
flex-direction : row ;
}
2018-03-08 03:59:47 +00:00
. rowhead : not ( . has_opt ) . rowitem , . opthead . rowitem , . colstack_head . rowitem {
2017-07-29 10:36:39 +00:00
width : 100 % ;
}
2018-03-08 03:59:47 +00:00
. optbox {
display : flex ;
2017-07-29 10:36:39 +00:00
padding-left : 5px ;
2018-03-08 03:59:47 +00:00
padding-top : 10 . 5px ;
margin-top : 7px ;
2017-07-29 10:36:39 +00:00
width : 100 % ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --main-block-color ) ;
2018-03-08 03:59:47 +00:00
}
. has_opt . rowitem {
margin-right : 0px ;
display : inline-block ;
padding-right : 0px ;
margin-top : 7px ;
padding-left : 12px ;
padding-top : 12px ;
2017-07-29 10:36:39 +00:00
}
. opt a {
font-size : 11px ;
}
2018-05-27 09:36:35 +00:00
. topic_list_title_block . pre_opt : before {
2018-12-14 04:08:53 +00:00
content : "{{lang " topics_click_topics_to_select " . }}" ;
2018-05-27 09:36:35 +00:00
font-size : 14px ;
}
2017-07-29 10:36:39 +00:00
. create_topic_opt a : before {
2018-12-14 04:08:53 +00:00
content : "{{lang " topics_new_topic " . }}" ;
2018-05-27 09:36:35 +00:00
margin-left : 3px ;
2017-07-29 10:36:39 +00:00
}
. locked_opt a : before {
2018-12-14 04:08:53 +00:00
content : "{{lang " forum_locked " . }}" ;
2017-07-29 10:36:39 +00:00
}
2018-05-27 09:36:35 +00:00
. mod_opt a {
margin-left : 4px ;
}
. mod_opt a : after {
2018-12-14 04:08:53 +00:00
content : "{{lang " topics_moderate " . }}" ;
2018-05-27 09:36:35 +00:00
padding-left : 1px ;
}
. create_topic_opt {
order : 1 ;
}
. mod_opt {
order : 2 ;
}
. pre_opt {
order : 3 ;
margin-left : auto ;
margin-right : 12px ;
}
2018-09-25 08:02:40 +00:00
. filter_opt {
display : none ;
}
2018-05-27 09:36:35 +00:00
@ keyframes fadein {
from { opacity : 0 ; }
to { opacity : 1 ; }
}
. mod_floater {
position : fixed ;
bottom : 15px ;
right : 15px ;
width : 150px ;
height : 65px ;
font-size : 14px ;
padding : 14px ;
z-index : 9999 ;
animation : fadein 0 . 8s ;
background-color : var ( --main-block-color ) ;
}
. mod_floater_head {
margin-bottom : 8px ;
}
. modal_pane {
position : fixed ;
left : 50 % ;
top : 50 % ;
transform : translate ( -50 % , -50 % ) ;
background-color : var ( --main-block-color ) ;
border : 2px solid # 333333 ;
padding-left : 24px ;
padding-right : 24px ;
z-index : 9999 ;
animation : fadein 0 . 8s ;
}
. pane_header {
font-size : 15px ;
}
. pane_header h3 {
-webkit-margin-before : 0 ;
-webkit-margin-after : 0 ;
margin-block-start : 0 ;
margin-block-end : 0 ;
margin-top : 10px ;
margin-bottom : 10px ;
font-weight : normal ;
}
. pane_row {
font-size : 14px ;
margin-bottom : 1px ;
}
. pane_selected {
font-weight : bold ;
}
. pane_buttons {
margin-top : 7px ;
margin-bottom : 8px ;
}
2017-07-29 10:36:39 +00:00
2017-10-12 03:24:14 +00:00
. topic_list . topic_row {
display : flex ;
}
2018-05-27 09:36:35 +00:00
. topic_selected . rowitem {
background-color : hsla ( 0 , 0 % , 29 % , 1 ) ;
}
2017-08-06 15:22:18 +00:00
/* Temporary hack, so that I don't break the topic lists of the other themes */
. topic_list . topic_inner_right {
display : none ;
}
. topic_list . rowitem {
float : left ;
overflow : hidden ;
}
. topic_list . topic_left {
2017-10-12 03:24:14 +00:00
width : 100 % ;
height : 59px ;
display : flex ;
padding : 0px ;
overflow : hidden ;
2017-08-06 15:22:18 +00:00
}
2018-07-15 05:00:48 +00:00
. topic_sticky . topic_left . topic_inner_left {
2018-03-08 03:59:47 +00:00
border-top : 4px solid hsl ( 41 , 100 % , 50 % ) ;
2018-05-15 05:59:52 +00:00
padding-left : 10px ;
padding-top : 10px ;
2018-02-26 09:07:00 +00:00
margin-top : 0px ;
margin-left : 0px ;
width : 100 % ;
}
2017-08-06 15:22:18 +00:00
. topic_list . topic_right {
2017-10-12 03:24:14 +00:00
height : 59px ;
2017-08-06 15:22:18 +00:00
margin-left : 8px ;
2017-10-12 03:24:14 +00:00
display : flex ;
width : 284px ;
padding : 0px ;
2017-08-06 15:22:18 +00:00
}
2018-05-27 09:36:35 +00:00
. topic_right_inside {
display : flex ;
}
2017-10-12 03:24:14 +00:00
. topic_list . topic_left img , . topic_list . topic_right img {
width : 64px ;
}
2018-05-27 09:36:35 +00:00
. topic_list . topic_inner_left , . topic_right_inside > span {
2017-10-12 03:24:14 +00:00
margin-left : 8px ;
margin-top : 12px ;
}
2019-06-11 18:04:56 +00:00
. topic_right_inside . lastName {
font-size : 14px ;
}
2017-10-12 03:24:14 +00:00
. topic_list . topic_row : last-child {
2017-08-15 13:47:56 +00:00
margin-bottom : 10px ;
}
2017-08-18 15:56:36 +00:00
. topic_list . lastReplyAt {
white-space : nowrap ;
}
2017-10-21 00:27:47 +00:00
. topic_list . lastReplyAt : before {
2018-12-14 04:08:53 +00:00
content : "{{lang " topics_last " . }}: " ;
2017-10-21 00:27:47 +00:00
}
2017-10-12 03:24:14 +00:00
. topic_list . starter : before {
2018-12-14 04:08:53 +00:00
content : "{{lang " topics_starter " . }}: " ;
2017-10-12 03:24:14 +00:00
}
2018-05-27 09:36:35 +00:00
. topic_middle {
display : none ;
}
2017-08-06 15:22:18 +00:00
2018-06-30 03:40:50 +00:00
. more_topic_block_initial {
display : none ;
}
. more_topic_block_active {
display : block ;
}
2017-09-22 02:21:17 +00:00
. topic_name_input {
width : 100 % ;
margin-right : 10px ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --input-background-color ) ;
border : 1px solid var ( --input-border-color ) ;
color : var ( --input-text-color ) ;
2017-09-22 02:21:17 +00:00
padding-bottom : 6px ;
font-size : 13px ;
padding : 5px ;
}
. topic_item . submit_edit {
margin-left : auto ;
}
. topic_item . topic_status_closed {
margin-left : auto ;
position : relative ;
top : -5px ;
}
2017-10-12 03:24:14 +00:00
. prev_link , . next_link {
display : none ;
}
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
. postImage {
max-width : 100 % ;
max-height : 200px ; /*300px;*/
background-color : rgb ( 71 , 71 , 71 ) ;
padding : 10px ;
}
2019-03-24 07:23:38 +00:00
blockquote {
background-color : rgb ( 71 , 71 , 71 ) ;
margin : 0px ;
2019-03-25 03:30:56 +00:00
margin-top : 10px ;
2019-03-24 07:23:38 +00:00
padding : 10px ;
}
2019-03-25 03:30:56 +00:00
blockquote : first-child {
margin-top : 0px ;
}
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
2017-07-29 10:36:39 +00:00
/* Profiles */
# profile_left_lane {
width : 220px ;
margin-top : 5px ;
}
# profile_left_lane . avatarRow {
overflow : hidden ;
max-height : 220px ;
2017-11-08 07:28:33 +00:00
padding : 0 ;
2017-07-29 10:36:39 +00:00
}
# profile_left_lane . avatar {
width : 100 % ;
margin : 0 ;
display : block ;
}
# profile_left_lane . username {
font-size : 14px ;
display : block ;
margin-top : 3px ;
}
2017-11-10 00:16:15 +00:00
# profile_left_pane . nameRow . username {
float : right ;
font-weight : normal ;
}
2017-12-24 07:38:46 +00:00
# profile_left_pane . report_item : after {
2018-12-14 04:08:53 +00:00
content : "{{lang " topic . report_button_text " . }}" ;
2017-12-24 07:38:46 +00:00
}
2017-07-29 10:36:39 +00:00
# profile_left_lane . profileName {
font-size : 18px ;
}
# profile_right_lane {
width : calc ( 100 % - 245px ) ;
}
2018-10-11 09:50:48 +00:00
# profile_right_lane . rowitem ,
# profile_right_lane . colstack_item . formrow . real_first_child ,
# profile_right_lane . colstack_item . formrow : first-child {
2017-07-29 10:36:39 +00:00
margin-top : 5px ;
}
. simple . user_tag {
font-size : 14px ;
}
2017-09-10 16:57:22 +00:00
/* TODO: Have a has_avatar class for profile comments and topic replies to allow posts without avatars? Won't that look inconsistent next to everything else for just about every theme though? */
2017-07-29 14:04:20 +00:00
# profile_comments . rowitem {
background-repeat : no-repeat , repeat-y ;
background-size : 128px ;
padding-left : 136px ;
}
2017-07-29 10:36:39 +00:00
2017-09-23 19:57:13 +00:00
. ip_search_block . rowitem {
display : flex ;
flex-direction : row ;
}
. ip_search_block input {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --input-background-color ) ;
border : 1px solid var ( --input-border-color ) ;
color : var ( --input-text-color ) ;
2017-09-23 19:57:13 +00:00
margin-top : -3px ;
margin-bottom : -3px ;
padding : 4px ;
padding-bottom : 3px ;
}
. ip_search_input {
font-size : 15px ;
width : 100 % ;
margin-left : 0px ;
}
. ip_search_search {
font-size : 14px ;
margin-left : 8px ;
}
2018-10-11 09:50:48 +00:00
. level_complete , . level_future , . level_inprogress {
display : flex ;
}
. progressWrap {
margin-left : auto ;
width : auto ! important ;
}
2017-08-06 15:22:18 +00:00
. colstack_grid {
display : grid ;
grid-template-columns : repeat ( 3 , 1fr ) ;
margin-top : 3px ;
grid-gap : 3px ;
text-align : center ;
}
. grid_stat , . grid_istat {
padding-top : 10px ;
padding-bottom : 10px ;
font-size : 13px ;
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
background-color : var ( --main-block-color ) ;
2017-08-06 15:22:18 +00:00
}
2017-07-29 10:36:39 +00:00
@ media ( max-width : 935px ) {
. simple . user_tag {
display : none ;
}
# profile_left_lane {
width : 160px ;
}
# profile_left_lane . avatarRow {
max-height : 160px ;
}
# profile_left_lane . profileName {
font-size : 16px ;
}
# profile_right_lane {
width : calc ( 100 % - 185px ) ;
}
}
@ media ( max-width : 830px ) {
2019-05-18 06:50:43 +00:00
# main_menu {
2017-07-29 10:36:39 +00:00
padding-left : 10px ;
padding-right : 0px ;
height : 35px ;
}
li {
height : 26px ;
}
2017-12-10 03:43:30 +00:00
# menu_overview {
2017-07-29 10:36:39 +00:00
margin-right : 9px ;
margin-left : 0px ;
font-size : 15px ;
width : 32px ;
text-align : center ;
}
. menu_left {
margin-right : 7px ;
}
2017-12-10 03:43:30 +00:00
. menu_left : not ( # menu_overview ) {
2017-07-29 10:36:39 +00:00
font-size : 13px ;
padding-top : 10px ;
}
. menu_alerts {
padding-top : 9px ;
float : left ;
margin-right : 6px ;
}
. alert_counter {
border-radius : 8px ;
font-size : 0px ;
color : # c80000 ;
left : 2px ;
}
. alert_aftercounter {
float : none ;
margin-right : 0px ;
font-size : 13px ;
padding-top : 1 . 5px ;
}
. has_alerts . alert_aftercounter {
position : relative ;
top : -5px ;
}
. menu_alerts : not ( . has_alerts ) . alert_counter {
display : none ;
}
2017-08-17 11:13:49 +00:00
. selectedAlert . alertList {
right : 10px ;
top : 42px ;
white-space : nowrap ;
overflow : hidden ;
text-overflow : ellipsis ;
}
. alertItem . withAvatar {
height : 28px ;
background-size : 38px ;
padding-left : 46px ;
padding-top : 10px ;
overflow : hidden ;
text-overflow : ellipsis ;
}
2018-05-28 06:27:12 +00:00
# back , . footer {
2017-07-29 10:36:39 +00:00
width : calc ( 100 % - 20px ) ;
}
. opthead , . rowhead , . colstack_head {
padding-top : 0px ! important ;
2018-05-28 06:27:12 +00:00
font-size : 15px ;
2017-07-29 10:36:39 +00:00
}
. rowblock : not ( . opthead ) : not ( . colstack_head ) : not ( . rowhead ) . rowitem {
font-size : 14px ;
}
. rowsmall {
font-size : 11px ;
}
2017-08-13 11:22:34 +00:00
@ media ( min-width : 400px ) {
2019-05-18 06:50:43 +00:00
# main_menu {
2017-08-13 11:22:34 +00:00
height : 40px ;
}
2017-12-10 03:43:30 +00:00
# menu_overview {
2017-08-13 11:22:34 +00:00
font-size : 16px ;
}
2017-12-10 03:43:30 +00:00
. menu_left : not ( # menu_overview ) {
2017-08-13 11:22:34 +00:00
font-size : 14px ;
padding-top : 13px ;
}
. alert_aftercounter {
font-size : 14px ;
padding-top : 4px ;
}
}
2017-07-29 10:36:39 +00:00
}
2017-07-29 14:04:20 +00:00
@ media ( max-width : 520px ) {
. user_tag , . level_label , . level {
display : none ;
}
# profile_left_lane {
width : 100px ;
}
# profile_comments . rowitem {
background-size : 80px ;
padding-left : calc ( 80px + 12px ) ;
}
# profile_left_lane . avatarRow {
max-height : 100px ;
}
# profile_right_lane {
width : calc ( 100 % - 125px ) ;
}
}
2017-08-06 15:22:18 +00:00
@ media ( max-width : 500px ) {
. topic_list . rowitem {
float : none ;
}
. topic_list . topic_left {
2017-12-10 03:43:30 +00:00
width : 100 % ;
2017-08-06 15:22:18 +00:00
}
2019-06-27 23:35:34 +00:00
. topic_list . topic_right , # poweredBy span {
2017-09-28 22:16:34 +00:00
display : none ;
}
2017-08-06 15:22:18 +00:00
}
2017-07-29 10:36:39 +00:00
@ media ( max-width : 470px ) {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
. like_count_label , . like_count {
2017-07-29 10:36:39 +00:00
display : none ;
}
2017-07-29 14:04:20 +00:00
. post_item {
background-size : 100px ;
padding-left : calc ( 100px + 12px ) ;
}
2017-07-29 10:36:39 +00:00
}
@ media ( max-width : 370px ) {
. menu_profile {
display : none ;
}
2017-07-29 14:04:20 +00:00
. post_item {
background-size : 80px ;
padding-left : calc ( 80px + 12px ) ;
}
. controls {
margin-top : 14px ;
}
# profile_comments . rowitem {
background-image : none ! important ;
padding-left : 10px ! important ;
}
2017-07-29 10:36:39 +00:00
}
@ media ( max-width : 324px ) {
2019-05-18 06:50:43 +00:00
# main_menu {
2017-07-29 10:36:39 +00:00
padding-left : 5px ;
}
}