less/roojs-bootstrap/tweaks.less
authoredward <edward@roojs.com>
Fri, 24 Nov 2017 13:50:05 +0000 (21:50 +0800)
committeredward <edward@roojs.com>
Fri, 24 Nov 2017 13:50:05 +0000 (21:50 +0800)
less/roojs-bootstrap/tweaks.less [new file with mode: 0644]

diff --git a/less/roojs-bootstrap/tweaks.less b/less/roojs-bootstrap/tweaks.less
new file mode 100644 (file)
index 0000000..bafcfa7
--- /dev/null
@@ -0,0 +1,93 @@
+.navbar-left .input-group[class*="col-"] {
+    float:left;
+}
+
+.ellipsis {
+    overflow: hidden;
+    text-overflow: ellipsis;
+    display: -webkit-box;
+    -webkit-line-clamp: 3;
+    -webkit-box-orient: vertical;
+}
+
+.sw-child-headline {
+    display: inline-block;
+    width: auto;
+}
+
+.box-input-label {
+    width: 100%;
+    display: inline-block;
+    font-weight: bold;
+}
+
+.box-label {
+    margin-left: 5px;
+    cursor: pointer;
+}
+/* needed as menu ontop of form does not work */
+.input-group .form-control {
+    
+    z-index: 1;
+}
+
+/* admin-lte - messes with checkbox and radio.. */
+.checkbox, .radio {
+    padding-left: 15px!important;
+}
+/* paging toolbar */
+
+.pagination .x-paging-position span {
+    padding-top:3px; padding-bottom:3px;
+}
+.pagination .x-paging-position span  input {
+    margin: 0 3px;
+}
+
+.panel-header-right {
+    float: right;
+    text-align: right;
+}
+
+.badge-error {
+    background-color: #b94a48;
+}
+.badge-error:hover {
+    background-color: #953b39;
+}
+.badge-warning {
+    background-color: #f89406;
+}
+.badge-warning:hover {
+    background-color: #c67605;
+}
+.badge-success {
+    background-color: #468847;
+}
+.badge-success:hover {
+    background-color: #356635;
+}
+.badge-info {
+    background-color: #3a87ad;
+}
+.badge-info:hover {
+    background-color: #2d6987;
+}
+.badge-inverse {
+    background-color: #333333;
+}
+.badge-inverse:hover {
+    background-color: #1a1a1a;
+}
+
+.tooltip.fade.in {
+    z-index: 10002;
+}
+
+.roo-invalid-outline {
+    outline-width: 5000px;
+    outline-offset: 5px;
+    outline-style: solid;
+    outline-color: rgba(182, 182, 182, 0.5);
+    position: relative;
+}
\ No newline at end of file