Make confluence more user friendly - like do not truncate articles name in left tree.
Also made it more compact.
Authorhubbitus
LicenseNo License
Categoryuserstyles, confluence, compact
Created
Updated
Size1.6 kB
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Make confluence more user friendly - like do not truncate articles name in left tree.
Also made it more compact.
/* ==UserStyle==
@name confluence compactness
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Pavel Alexeev <Pahan@Hubbitus.info>
==/UserStyle== */
@-moz-document regexp("https?://confluence\\..+") {
.plugin_pagetree .plugin_pagetree_children_list > li {
margin: 0;
line-height: 0.9;
}
.ia-secondary-container {
margin: 0;
}
div.plugin_pagetree ul.plugin_pagetree_children_list > li > div.plugin_pagetree_childtoggle_container {
width: 14px;
height: 14px;
}
.plugin_pagetree .plugin_pagetree_children_list > li > .plugin_pagetree_children_content {
width: calc(100% - 20px);
}
.ia-fixed-sidebar div.plugin_pagetree ul.plugin_pagetree_children_list .plugin_pagetree_children_span a {
white-space: normal;
}
/*
.innerCell {
border: 1px dashed #999;
border-radius: 8px;
}
*/
.wiki-content .columnLayout {
margin: 0;
border-spacing: 10px;
margin-bottom: -10px;
}
.wiki-content .cell {
/* border: 1px dashed #999;*/
border-radius: 15px;
padding: 0.5em !important;
box-shadow: rgba(50, 50, 93, 0.25) 0px 7px 7px -7px, rgba(0, 0, 0, 0.3) 0px 20px 10px -30px, rgba(10, 37, 64, 0.25) 0px -2px 6px 0px inset;
}
.plugin_pagetree .aui-icon-small::before {
margin-top: -3px;
margin-left: 1px;
}
/* Terms, code */
code, kbd {
background-color: aliceblue;
border: 1px dashed lightblue;
border-radius: 6px;
}
}