| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /**
- * Stylesheet
- *
- * @namespace Lungo
- * @class Widgets
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- */
- @import "constants.less";
- @import "mixins.less";
- .scroll {
- // overflow: scroll;
- // overflow-x: hidden;
- // overflow-y: scroll;
- overflow-y: scroll;
- -webkit-overflow-scrolling: touch;
- -webkit-box-flex: 1;
- &.horizontal {
- overflow-x: scroll;
- overflow-y: hidden !important;
- & > * {
- min-width: 4096px;
- & > * { float: left; }
- }
- }
- // FIXES: position: relative childrens
- & > * { -webkit-transform: translate3d(0, 0, 0); }
- }
- .left { float: left; }
- .right { float: right;}
- .hidden { display: none; }
- .indented > * {
- margin: 10px;
- }
- .wrapper {
- padding: 8px 8px;
- }
- .icon {
- &.small {
- font-size: 1.3em;
- }
- }
- .framed { border: 2px solid #fff;}
- .round { .border-radius(4px); }
- .bubble {
- display: inline-block;
- padding: 2px 3px;
- min-width: 12px;
- font-size: 0.75em;
- font-weight: bold;
- line-height: 13px;
- }
- & strong {
- font-size: 1.15em;
- }
- & small {
- display: block;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- font-size: 0.8em;
- }
|