1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-03 02:33:15 +00:00
TiddlyWiki5/cssbuild/tiddlywiki.less
2012-07-08 19:26:00 +01:00

194 lines
2.9 KiB
Plaintext

/*
TiddlyWiki
Base CSS from Twitter Bootstrap plus TiddlyWiki-specific overrides
*/
/*
Base Twitter Bootstrap
*/
@import "twitter-bootstrap/less/bootstrap.less";
/*
TiddlyWiki overrides of Bootstrap variables
*/
@baseFontSize: 14px;
@baseLineHeight: 20px;
@linkColor: #6D78CA;
@linkColorHover: darken(@linkColor, 15%);
@navbarBackground: darken(@navbarBackgroundHighlight, 15%);
@navbarBackgroundHighlight: @btnDangerBackgroundHighlight;
@navbarText: @white;
@navbarLinkColor: @grayLighter;
/*
TiddlyWiki mixins
*/
// This doesn't seem to work; trying to call it puts Less into an infinite loop
.tab-size (@size) {
tab-size: @size;
-moz-tab-size: @size;
-o-tab-size: @size;
}
/*
Base re-definitions
*/
body {
position: relative; // So that height: 100% will fit to the body
background: @grayLighter; // So that the tiddlers pop out more
padding-top: @navbarHeight; // Allow for the navbar
}
/*
Tiddler styles
*/
.tw-story-element {
position: relative;
margin: 30px 5px 30px 5px;
padding: 30px 30px 30px 30px;
border: 1px solid #999;
background-color: #fff;
.box-shadow(1px 1px 6px rgba(0,0,0,0.4));
}
.tw-story-element .body {
margin-top: 12px;
}
.title {
font-weight: bold;
font-size: 33px;
line-height: 40px;
color: #182955;
}
.title button {
vertical-align: top;
}
.title > span {
margin-right: 10px;
}
.tw-tiddler-missing .title {
font-style: italic;
font-weight: normal;
}
.tw-edit-field {
border: 1px dotted #888;
}
textarea.tw-edit-field {
width: 100%;
}
canvas.tw-edit-field {
cursor: crosshair;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
img, canvas {
max-width: 100%;
}
a.tw-tiddlylink {
font-style: normal;
font-weight: normal;
}
a.tw-tiddlylink-resolves {
font-style: normal;
font-weight: bold;
}
a.tw-tiddlylink-missing {
font-style: italic;
}
.tw-suppress-missing-tiddlylink a.tw-tiddlylink-missing {
font-style: inherit;
}
/*
Dropdown menus
*/
.tw-ticked-menu-item::before {
position: absolute;
content: "\2022";
left: 4px;
}
.dropdown-menu {
position: static;
}
.dropdown-menu a {
position: relative;
}
/* This is needed to make the dropdown arrows abut to the dropdown itself */
.navbar .dropdown-menu::before {
top: -4px;
}
.navbar .dropdown-menu::after {
top: -3px;
}
/*
Buttons
*/
.btn-invisible {
border: none;
background: none;
margin: 0;
padding: 0;
}
.tw-tags-wrapper .label {
margin-right: 6px;
}
/*
Split label
*/
.splitLabel {
font-size: 9.5px;
margin-right: 5px;
}
.splitLabelLeft {
text-transform: uppercase;
font-weight: bold;
padding: 3px 2px 3px 5px;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
background-color: #ccc;
}
.splitLabelRight {
padding: 3px 5px 3px 2px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
background-color: #eee;
}
/*
Includes
*/
@import "javascript.less";