gosora/themes/tempra-conflux/public/panel.css
Azareal 3821e626ce Added support for phrases in CSS files.
Add support for phrases in template files.
Revamped every template to make them use phrases.
Revamped every CSS file to make them use phrases.

Tweaked the contributing document.
We now use LogError instead of log.Fatal() in a few places to capture more stack traces.
Fixed the suffixes on the topic and post count pages, as they were saying views instead of posts / topics.
Split the paginator into it's own template.
Refactored the theme logic to defer loading the static files to a later stage.
Greatly improved the accessibility with a number of ARIA attributes in places where there were none.
Removed the edit-topic and page templates.
Renamed the panel-adminlogs template to panel_adminlogs.
Non-existent phrases used by transpiled templates should now be logged.
Fixed a bug where alertbox was plopped down multiple times on one page.
The phrase placeholders are more informative now.
Added the CurrentLanguagePackName and GetLanguagePackByName API functions.
Notices are now shown when you delete, update, or create a forum.
2018-03-11 09:33:49 +00:00

121 lines
3.6 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*.submenu {
padding-left: 18px;
}*/
.submenu:before {
content:"";
margin-right: 8px;
}
.edit_button:before {
content: "{{index .Phrases "panel_edit_button_text"}}";
}
.delete_button:after {
content: "{{index .Phrases "panel_delete_button_text"}}";
}
.panel_upshift:visited {
color: black;
}
.panel_tag {
padding-left: 0px;
padding-right: 0px;
border: none;
background: none;
color: #202020;
font-size: 14px;
}
.tag-mini {
margin-left: 0px;
padding-left: 0px;
padding-right: 0px;
padding-top: 2px;
padding-bottom: 2px;
color: black;
font-size: 13px;
}
.panel_floater, .panel_buttons {
margin-left: auto;
float: right;
}
#panel_groups > .rowitem > .panel_floater {
float: none;
}
#panel_groups > .rowitem > .panel_floater > .panel_right_button {
float: right;
}
#panel_forums .rowitem {
display: flex;
}
#panel_forums > .rowitem > .panel_floater {
margin-left: 0px;
}
#panel_forums > .rowitem > span > .forum_name {
margin-right: 4px;
}
#panel_forum_quick_perms > .formrow > .formitem > a {
margin-right: 4px;
}
/* Quick fix, need to properly patch this */
.forum_active > select {
margin-bottom: 3px
}
.panel_rank_tag, .forum_preset, .forum_active {
float: none;
color: #202020 !important;
font-size: 11px;
}
.panel_rank_tag_admin:before { content: "{{index .Phrases "panel_rank_admins"}}"; }
.panel_rank_tag_mod:before { content: "{{index .Phrases "panel_rank_mods"}}"; }
.panel_rank_tag_banned:before { content: "{{index .Phrases "panel_rank_banned"}}"; }
.panel_rank_tag_guest:before { content: "{{index .Phrases "panel_rank_guests"}}"; }
.panel_rank_tag_member:before { content: "{{index .Phrases "panel_rank_members"}}"; }
.forum_preset_announce:after { content: "{{index .Phrases "panel_preset_announcements"}}"; }
.forum_preset_members:after { content: "{{index .Phrases "panel_preset_member_only"}}"; }
.forum_preset_staff:after { content: "{{index .Phrases "panel_preset_staff_only"}}"; }
.forum_preset_admins:after { content: "{{index .Phrases "panel_preset_admin_only"}}"; }
.forum_preset_archive:after { content: "{{index .Phrases "panel_preset_archive"}}"; }
.forum_preset_all:after { content: "{{index .Phrases "panel_preset_public"}}"; }
.forum_preset_custom, .forum_preset_ { display: none !important; }
.forum_active_Hide:before { content: "{{index .Phrases "panel_active_hidden"}}"; }
.forum_active_Hide + .forum_preset:before { content: " | "; }
.forum_active_Show { display: none !important; }
.forum_active_name { color: #707070; }
.builtin_forum_divider { border-bottom-style: solid; }
.perm_preset_no_access:before { content: "{{index .Phrases "panel_perms_no_access" }}"; color: maroon; }
.perm_preset_read_only:before { content: "{{index .Phrases "panel_perms_read_only" }}"; color: green; }
.perm_preset_can_post:before { content: "{{index .Phrases "panel_perms_can_post" }}"; color: green; }
.perm_preset_can_moderate:before { content: "{{index .Phrases "panel_perms_can_moderate" }}"; color: darkblue; }
.perm_preset_custom:before { content: "{{index .Phrases "panel_perms_custom" }}"; color: black; }
.perm_preset_default:before { content: "{{index .Phrases "panel_perms_default" }}"; }
.theme_row > .panel_floater > .panel_right_button { margin-left: 5px; }
#panel_word_filters .itemSeparator:before {
content: " || ";
padding-left: 2px;
padding-right: 2px;
}
.ct_chart {
padding-left: 10px;
padding-top: 18px;
padding-bottom: 2px;
padding-right: 10px;
margin-bottom: 12px;
background-color: white;
border: 1px solid var(--main-border-color);
border-bottom: 1.5px inset var(--main-border-color);
}
@media(max-width: 1300px) {
.theme_row { background-image: none !important; }
}