Optimizing Tiki theme Yeti
I've made some simple optimizations on the Yeti theme, and like to share the ones that could be of help for others. They can directly be copied into Look & Feel, custom CSS section. Maybe these can be made part of the official theme?
Automatic table of contents isn't on top of all other elements:
Copy to clipboard
.autotoc { z-index:100; }
Login menu of login module isn't on top of other elements:
Copy to clipboard
.siteloginbar_popup { z-index:3; }
Aligning the page title and action bar and improving the looks by adding a line:
Copy to clipboard
.pagetitle { margin-top: 0px; } .wikiactions_wrapper { border-bottom: 1px solid #ddd; margin-bottom: 10px; }
Other changes, improving the alignment of search module button
Copy to clipboard
.input-group-sm>.input-group-btn>.btn { height: 27px !important; margin-top: 5px !important; padding: 0 12px !important; }
Module Bookmarks doesn't respect the theme's CSS file because of hardcoded font size etc.
This is not the nicest way of fixing this, but for now this works, quick and dirty.
Copy to clipboard
input[name="modb_name"] { margin-top: 10px; } input[name="modb_name"], input[name="s_f_attachments-comment"], select[name="assign"] { width: 100%; font-size: 12px !important; margin-bottom: 15px; line-height: 1.4; height: 36px; padding: 8px 12px; color: #6f6f6f; background-color: #fff; background-image: none; border: 1px solid #ccc; border-radius: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } input[name^="bookmark"] { font-size: 12px !important; display: inline-block; line-height: 1.4; } input[name="addtags"] { height: 36px; }