1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- //
- // Posting
- // --------------------------------------------------
- // Affix and style placeholder
- #posting-placeholder {
- background-color: @gray-lighter;
- position: fixed;
- bottom: 0px;
- width: 100%;
- &.in {
- .box-shadow(0px 0px 8px @gray-light);
- }
- }
- // Posting ui preview
- .posting-ui-preview {
- padding: @line-height-computed 0px;
- position: relative;
- .form-control {
- box-shadow: none;
- resize: none;
- }
- .loading-overlay {
- position: absolute;
- width: 100%;
- height: 100%;
- min-height: 100%;
- top: 0px;
- left: 0px;
- right: 0px;
- bottom: 0px;
- }
- .loading-cover {
- display: table;
- width: 100%;
- height: 100%;
- min-height: 100%;
- }
- .loading-inner {
- display: table-cell;
- text-align: center;
- vertical-align: middle;
- .loader {
- height: 100px;
- .loader-spinning-wheel {
- width: 100px;
- height: 100px;
- }
- }
- }
- }
- // First row
- #posting-placeholder .first-row {
- margin-bottom: @line-height-computed;
- }
|