Mercurial > repos > immport-devteam > flow_overview
comparison js/Editor-1.5.6/css/scss/inline.scss @ 1:b5453d07f740 draft default tip
"planemo upload for repository https://github.com/ImmPortDB/immport-galaxy-tools/tree/master/flowtools/flow_overview commit 65373effef15809f3db0e5f9603ef808f4110aa3"
| author | azomics |
|---|---|
| date | Wed, 29 Jul 2020 17:03:53 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 0:8283ff163ba6 | 1:b5453d07f740 |
|---|---|
| 1 | |
| 2 // Inline form editing | |
| 3 // Hide the label and allow the field to take the full width | |
| 4 div.DTE_Inline { | |
| 5 position: relative; | |
| 6 display: table; | |
| 7 width: 100%; | |
| 8 | |
| 9 div.DTE_Inline_Field, | |
| 10 div.DTE_Inline_Buttons { | |
| 11 display: table-cell; | |
| 12 vertical-align: middle; | |
| 13 | |
| 14 div.DTE_Field { | |
| 15 padding: 0; | |
| 16 | |
| 17 >label { | |
| 18 display: none; | |
| 19 } | |
| 20 | |
| 21 input { | |
| 22 width: 100%; | |
| 23 } | |
| 24 } | |
| 25 | |
| 26 div.DTE_Form_Buttons button { | |
| 27 margin: -6px 0 -6px 4px; | |
| 28 padding: 5px; | |
| 29 } | |
| 30 } | |
| 31 | |
| 32 // Have the input types take up full space, taking into account the cell padding | |
| 33 div.DTE_Field input[type="color"], | |
| 34 div.DTE_Field input[type="date"], | |
| 35 div.DTE_Field input[type="datetime"], | |
| 36 div.DTE_Field input[type="datetime-local"], | |
| 37 div.DTE_Field input[type="email"], | |
| 38 div.DTE_Field input[type="month"], | |
| 39 div.DTE_Field input[type="number"], | |
| 40 div.DTE_Field input[type="password"], | |
| 41 div.DTE_Field input[type="search"], | |
| 42 div.DTE_Field input[type="tel"], | |
| 43 div.DTE_Field input[type="text"], | |
| 44 div.DTE_Field input[type="time"], | |
| 45 div.DTE_Field input[type="url"], | |
| 46 div.DTE_Field input[type="week"] { | |
| 47 margin: -6px 0; | |
| 48 } | |
| 49 | |
| 50 &.DTE_Processing:after { | |
| 51 position: absolute; | |
| 52 content: ' '; | |
| 53 display: block; | |
| 54 top: 4px; | |
| 55 right: 10px; | |
| 56 height: 12px; | |
| 57 width: 17px; | |
| 58 background: url('../images/ajax-loader-small.gif') no-repeat top left; | |
| 59 } | |
| 60 } | |
| 61 | |
| 62 // Responsive integration | |
| 63 span.dtr-data div.DTE_Inline { | |
| 64 display: inline-table; | |
| 65 } |
