horizon/openstack_dashboard/static/dashboard/scss/components/_messages.scss
Diana Whitten 8b76b5fb90 Initial Clean Up Old Styles in _debt.scss
Unnecessary Styles:
 * #create_container_form .modal-footer
 * .list-bullet
 * dt

Can't find usage:
 * .btn-inline
 * #actions.single
 * div.input input[type="checkbox"]
 * .item_detail

Not used any longer:
 * .modal-body fieldset .form-field select[data-add-item-url

Change-Id: Ibfeeec84a58d4dffaa669fc48f27cac02a2011c7
Partially-implements: blueprint horizon-theme-css-reorg
2016-04-29 16:11:17 +00:00

36 lines
612 B
SCSS

.messages {
position: fixed;
z-index: $zindex-dropdown + 1;
padding-top: $padding-small-vertical;
right: $padding-large-horizontal;
// TODO (hurgleburlger) RESPONSIVE
// We will readdress this when we address the responsiveness of Horizon
width: 300px;
.alert {
&.alert-default {
background-color: $gray-light;
}
p {
overflow: hidden;
word-wrap: break-word;
&:last-child {
margin-bottom: 0;
}
}
}
}
.javascript-disabled {
margin-top: $navbar-height;
width: 100%;
position: absolute;
z-index: 1;
}
.alert > ul {
padding: 0;
}