123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- //
- // Modal Flavor
- // --------------------------------------------------
- // Custom header styles
- .modal-header {
- background: @modal-header-bg;
- border-bottom-color: @modal-header-bg;
- border-radius: @border-radius-large @border-radius-large 0px 0px;
- color: @modal-header-color;
- .close {
- padding: 0px 6px;
- color: @modal-header-color;
- font-size: 24px;
- line-height: 24px;
- text-shadow: none;
- }
- }
- // Color message icon
- .modal-message .message-icon {
- color: @message-icon-color;
- }
- // Even out space between form fields
- .modal-body>.form-group {
- margin: @line-height-computed 0px;
- &:first-child {
- margin-top: 0px;
- }
- &:last-child {
- margin-bottom: 0px;
- }
- }
- // Sign in modal
- .modal-sign-in {
- .modal-body {
- padding-top: 0px;
- padding-bottom: 0px;
- &>.form-group {
- margin: @line-height-computed 0px;
- }
- }
- }
- // Register modal
- .modal-register .legal-footnote {
- text-align: center;
- .material-icon {
- margin-right: 4px;
- position: relative;
- bottom: 1px;
- color: @gray-light;
- font-size: 28px;
- line-height: 28px;
- }
- a, a:link, a:visited {
- color: @gray-light;
- }
- a:focus, a:hover, a:active {
- color: @text-color;
- }
- }
- // Avatar crop
- .modal-avatar-index {
- .avatar-preview {
- background: #fff;
- border-radius: @border-radius-large;
- }
- }
- .modal-avatar-crop {
- .cropit-preview {
- background: #fff;
- margin: @line-height-computed 0px;
- }
- .cropit-image-zoom-input {
- margin-top: @line-height-computed * 2;
- margin-bottom: @line-height-computed;
- }
- }
- // Post likes
- .modal-post-likers {
- .media {
- border-bottom: 1px solid @gray-lighter;
- padding-bottom: 15px; // hardcoded in BS less
- img {
- border-radius: @border-radius-base;
- width: 40px;
- height: 40px;
- }
- &:last-child {
- border: none;
- padding-bottom: 0px;
- }
- }
- }
|