LaravelTest
91 строка · 2.0 Кб
1div.dt-autofill-handle {2position: absolute;3height: 8px;4width: 8px;5z-index: 102;6box-sizing: border-box;7background: #0275d8;8cursor: pointer;9}
10
11div.dtk-focus-alt div.dt-autofill-handle {12background: #ff8b33;13}
14
15div.dt-autofill-select {16position: absolute;17z-index: 1001;18background-color: #0275d8;19background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px);20}
21div.dt-autofill-select.top, div.dt-autofill-select.bottom {22height: 3px;23margin-top: -1px;24}
25div.dt-autofill-select.left, div.dt-autofill-select.right {26width: 3px;27margin-left: -1px;28}
29
30div.dt-autofill-list {31position: fixed;32top: 50%;33left: 50%;34width: 500px;35margin-left: -250px;36background-color: white;37border-radius: 6px;38box-shadow: 0 0 5px #555;39border: 2px solid #444;40z-index: 11;41box-sizing: border-box;42padding: 1.5em 2em;43}
44div.dt-autofill-list ul {45display: table;46margin: 0;47padding: 0;48list-style: none;49width: 100%;50}
51div.dt-autofill-list ul li {52display: table-row;53}
54div.dt-autofill-list ul li:last-child div.dt-autofill-question, div.dt-autofill-list ul li:last-child div.dt-autofill-button {55border-bottom: none;56}
57div.dt-autofill-list ul li:hover {58background-color: #f6f6f6;59}
60div.dt-autofill-list div.dt-autofill-question {61display: table-cell;62padding: 0.5em 0;63border-bottom: 1px solid #ccc;64}
65div.dt-autofill-list div.dt-autofill-question input[type=number] {66padding: 6px;67width: 30px;68margin: -2px 0;69}
70div.dt-autofill-list div.dt-autofill-button {71display: table-cell;72padding: 0.5em 0;73border-bottom: 1px solid #ccc;74}
75
76div.dt-autofill-background {77position: fixed;78top: 0;79left: 0;80width: 100%;81height: 100%;82background: rgba(0, 0, 0, 0.7);83background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);84z-index: 10;85}
86
87div.dt-autofill-list div.dt-autofill-question input[type=number] {88padding: 6px;89width: 60px;90margin: -2px 0;91}
92