Commit 4912dd44 authored by Mark Otto's avatar Mark Otto

fix h3 in modal and make modal unhidden by removing important from earlier issue

parent 7ce048bc
......@@ -4715,6 +4715,11 @@ input[type="submit"].btn.btn-mini {
margin-top: 2px;
}
.modal-header h3 {
margin: 0;
line-height: 1;
}
.modal-body {
max-height: 400px;
padding: 15px;
......@@ -5498,11 +5503,11 @@ a.badge:hover {
}
.hide {
display: none !important;
display: none;
}
.show {
display: block !important;
display: block;
}
.invisible {
......
......@@ -37,7 +37,6 @@
'WebkitTransition' : 'webkitTransitionEnd'
, 'MozTransition' : 'transitionend'
, 'OTransition' : 'oTransitionEnd otransitionend'
, 'msTransition' : 'MSTransitionEnd'
, 'transition' : 'transitionend'
}
, name
......
......@@ -37,7 +37,6 @@
'WebkitTransition' : 'webkitTransitionEnd'
, 'MozTransition' : 'transitionend'
, 'OTransition' : 'oTransitionEnd otransitionend'
, 'msTransition' : 'MSTransitionEnd'
, 'transition' : 'transitionend'
}
, name
......
This diff is collapsed.
......@@ -56,6 +56,11 @@
border-bottom: 1px solid #eee;
// Close icon
.close { margin-top: 2px; }
// Heading
h3 {
margin: 0;
line-height: 1;
}
}
// Body (where all modal content resides)
......
......@@ -12,12 +12,11 @@
}
// Toggling content
// Uses `!important` for proper specifity over things like form controls
.hide {
display: none !important;
display: none;
}
.show {
display: block !important;
display: block;
}
// Visibility
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment