123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- //
- // Posting
- // --------------------------------------------------
- // Affix and style placeholder
- #posting-placeholder {
- background-color: @gray-lighter;
- display: none;
- margin-top: @line-height-computed * 1.5;
- margin-bottom: @line-height-computed * -1.5;
- padding: @line-height-computed 0px;
- transition: height 300ms;
- &.slide-in {
- display: block;
- }
- }
- // First row
- #posting-placeholder .first-row {
- margin-bottom: @line-height-computed;
- .form-control {
- border: 1px solid darken(@gray-lighter, 15%);
- }
- .posting-options {
- .btn {
- margin-right: @padding-small-horizontal;
- padding: 2px 0px;
- }
- .material-icon {
- width: 28px;
- height: 28px;
- position: relative;
- top: 0px;
- left: 2px;
- font-size: 28px;
- line-height: 28px;
- text-align: center;
- }
- }
- }
- // Posting ui preview
- .posting-ui-preview {
- padding: @line-height-computed 0px;
- position: relative;
- .form-control {
- box-shadow: none;
- resize: none;
- }
- }
- // Posting Loader
- .posting-loader {
- text-align: center;
- }
- .posting-loader .loader {
- height: 100px;
- .loader-spinning-wheel {
- width: 100px;
- height: 100px;
- }
- }
- // Posting message
- @posting-icon-width: 28px;
- .posting-message {
- text-align: center;
- .material-icon {
- margin-right: @line-height-computed / 3;
- position: relative;
- top: -1px;
- width: @posting-icon-width;
- height: @posting-icon-width;
- font-size: @posting-icon-width;
- line-height: @posting-icon-width;
- }
- .message-body {
- p {
- font-size: @font-size-large;
- }
- }
- }
|