diff options
author | Paolo T <tuscanhobbit@users.noreply.github.com> | 2013-10-11 00:24:25 -0700 |
---|---|---|
committer | Paolo T <tuscanhobbit@users.noreply.github.com> | 2013-10-11 00:24:25 -0700 |
commit | 7a63d5e50b0ae16a38e673867abd6043d4becc07 (patch) | |
tree | 6d174d12a0de707ed8f875801a8dbc0c35f70d3f /library/font_awesome/src/assets/less/lazy.less | |
parent | c2a88c3e4858e3eb2c553bdc775d2f684b0d46b4 (diff) | |
parent | 89fc319c900873be58fa677707518646f6c79eec (diff) | |
download | volse-hubzilla-7a63d5e50b0ae16a38e673867abd6043d4becc07.tar.gz volse-hubzilla-7a63d5e50b0ae16a38e673867abd6043d4becc07.tar.bz2 volse-hubzilla-7a63d5e50b0ae16a38e673867abd6043d4becc07.zip |
Merge pull request #2 from friendica/master
Upgraded to latest red
Diffstat (limited to 'library/font_awesome/src/assets/less/lazy.less')
-rw-r--r-- | library/font_awesome/src/assets/less/lazy.less | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/library/font_awesome/src/assets/less/lazy.less b/library/font_awesome/src/assets/less/lazy.less new file mode 100644 index 000000000..3c914de8c --- /dev/null +++ b/library/font_awesome/src/assets/less/lazy.less @@ -0,0 +1,85 @@ +.padding-none { padding: 0 !important; } +.padding { padding: 10px !important; } +.padding-small { padding: 5px !important; } +.padding-large { padding: 22px !important; } + +.padding-top-none { padding-top: 0 !important; } +.padding-top { padding-top: 10px !important; } +.padding-top-small { padding-top: 5px !important; } +.padding-top-large { padding-top: 22px !important; } + +.padding-right-none { padding-right: 0 !important; } +.padding-right { padding-right: 10px !important; } +.padding-right-small { padding-right: 5px !important; } +.padding-right-large { padding-right: 22px !important; } + +.padding-bottom-none { padding-bottom: 0 !important; } +.padding-bottom { padding-bottom: 10px !important; } +.padding-bottom-small { padding-bottom: 5px !important; } +.padding-bottom-large { padding-bottom: 22px !important; } + +.padding-left-none { padding-left: 0 !important; } +.padding-left { padding-left: 10px !important; } +.padding-left-small { padding-left: 5px !important; } +.padding-left-large { padding-left: 22px !important; } + +.margin-none { margin: 0 !important; } +.margin { margin: 10px !important; } +.margin-small { margin: 5px !important; } +.margin-large { margin: 22px !important; } + +.margin-top-none { margin-top: 0 !important; } +.margin-top { margin-top: 10px !important; } +.margin-top-large { margin-top: 22px !important; } +.margin-top-small { margin-top: 5px !important; } + +.margin-right-none { margin-right: 0 !important; } +.margin-right { margin-right: 10px !important; } +.margin-right-large { margin-right: 22px !important; } +.margin-right-small { margin-right: 5px !important; } + +.margin-bottom-none { margin-bottom: 0 !important; } +.margin-bottom { margin-bottom: 10px !important; } +.margin-bottom-large { margin-bottom: 22px !important; } +.margin-bottom-small { margin-bottom: 5px !important; } + +.margin-left-none { margin-left: 0 !important; } +.margin-left { margin-left: 10px !important; } +.margin-left-large { margin-left: 22px !important; } +.margin-left-small { margin-left: 5px !important; } + +.border-left-none { border-left: none !important; } +.border-right-none { border-right: none !important; } +.border-bottom-none { border-bottom: none !important; } +.border-top-none { border-top: none !important; } + +.display-block { display: block; } // use to swap an anchor tag to span a whole row to make click target larger +.no-underline:hover { text-decoration: none; } +.clickable { cursor: pointer; } +.strong { font-weight: bold; } +.em { font-style: italic; } +.small { font-size: 85%; } // Ex: 14px base font * 85% = about 12px +.no-link { color: @grayDark; } +.text-sans-serif { font-family: @sansFontFamily; } +.text-ellipsis { .text-overflow(); } // truncates text to a single line with an ellipsis at the end +.text-default { + font-family: @sansFontFamily; + font-size: @baseFontSize; + line-height: @baseLineHeight; + font-weight: normal; +} +.hilite { + color: @linkColor; + &:hover { + color: @linkColorHover; + text-decoration: underline; + } + [class^="icon-"], [class*=" icon-"] { + &:before { + display: inline; + } + } +} +.strike { text-decoration: line-through; } +.upper { text-transform: uppercase; } +.lower { text-transform: lowercase; } |