diff --git a/public/css/app.css b/public/css/app.css index 0058aecdf..eb00e29de 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -747,13 +747,14 @@ input[type="number"] { } #items .select2-container--default .select2-selection--multiple .select2-selection__choice { - background-color: #6da252; - border: 1px solid #6da252; + background-color: #f4f4f4; + color: #444; + border: 1px solid #ddd; margin-bottom: 5px; } #items .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { - color: #fffdfd; + color: #444; } #items span.select2.select2-container.select2-container--default .select2-selection.select2-selection--multiple { @@ -772,4 +773,62 @@ input[type="number"] { #items .select2-search__field { padding-left: 15px; -} \ No newline at end of file +} + +.stepwizard-step p { + margin-top: 5px; + font-size: 16px; + color:#666; +} + +.stepwizard-row { + display: table-row; +} + +.stepwizard { + display: table; + width: 100%; + position: relative; + margin-top: 20px; +} + +.stepwizard-step button[disabled] { + /*opacity: 1 !important; + filter: alpha(opacity=100) !important;*/ +} + +.stepwizard .btn.disabled, .stepwizard .btn[disabled], .stepwizard fieldset[disabled] .btn { + opacity:1 !important; + color:#bbb; +} + +.stepwizard-row:before { + top: 26px; + bottom: 0; + position: absolute; + content:" "; + width: 100%; + height: 1px; + background-color: #ccc; + z-index: 0; +} + +.stepwizard-step { + display: table-cell; + text-align: center; + position: relative; +} + +.btn-circle.btn-success { + color: #fff; +} + +.btn-circle { + width: 50px; + height: 50px; + text-align: center; + padding: 1px 0; + font-size: 30px; + line-height: 1.428571; + border-radius: 30px; +}