decred.org/dcrdex@v1.0.3/client/webserver/site/src/css/mm.scss (about) 1 div[data-handler=mmsettings], 2 div[data-handler=mmarchives], 3 div[data-handler=mmlogs], 4 div[data-handler=mm] { 5 #gapStrategySelect { 6 width: 300px; 7 } 8 9 .gap-factor-input, 10 .lots-input { 11 max-width: 75px; 12 } 13 14 [data-tmpl=value].wide { 15 width: 3rem; 16 } 17 18 .ico-arrowup.ml2px { 19 margin-left: 2px; 20 } 21 22 .pt-pt5 { 23 padding-top: 0.125rem; 24 } 25 26 #profitInput { 27 width: 70px; 28 } 29 30 .bot-type-selector { 31 @include border; 32 @extend .rounded3; 33 34 display: flex; 35 flex-direction: column; 36 align-items: stretch; 37 user-select: none; 38 39 &.disabled { 40 opacity: 0.5; 41 } 42 43 &:not(.disabled) { 44 @extend .hoverbg; 45 46 cursor: pointer; 47 48 &.selected { 49 outline: 2px solid $success; 50 background-color: #7772; 51 } 52 } 53 } 54 55 .bot-problems-section { 56 background-color: #f00a; 57 margin-top: 2px; 58 margin-bottom: 2px; 59 padding-left: 2px; 60 border-radius: 5px; 61 } 62 63 #marketFilterIcon { 64 position: absolute; 65 left: 10px; 66 top: 50%; 67 transform: translateY(-50%); 68 opacity: 0.5; 69 } 70 71 #botTypeForm { 72 min-width: 375px; 73 } 74 75 #cexSelection { 76 .cex-selector { 77 user-select: none; 78 79 &.configured:not(.selected) { 80 opacity: 0.8; 81 } 82 } 83 84 &.disabled { 85 .cex-selector.configured { 86 opacity: 0.5; 87 } 88 89 .cex-selector:not(.configured) { 90 cursor: pointer; 91 } 92 } 93 94 &:not(.disabled) { 95 .cex-selector { 96 @extend .hoverbg; 97 98 cursor: pointer; 99 100 &.selected { 101 border-color: $success !important; 102 border-width: 2px !important; 103 background-color: #7772 !important; 104 } 105 } 106 } 107 108 .reconfig { 109 position: absolute; 110 top: 0; 111 right: 0; 112 } 113 } 114 115 #quickConfig input[type=number] { 116 width: 100px; 117 } 118 119 #levelSpacingBox.disabled { 120 opacity: 0.5; 121 } 122 123 #placementsChart, 124 [data-tmpl=placementsChart] { 125 height: 100px; 126 127 canvas { 128 @extend .fill-abs; 129 } 130 } 131 132 #buyPlacementsBox, 133 #sellPlacementsBox { 134 .ico-cross { 135 color: var(--text-danger); 136 } 137 138 .ico-plus { 139 color: var(--btn-go-bg); 140 } 141 } 142 143 #noBots { 144 .ico-robot { 145 font-size: 80px; 146 opacity: 0.7; 147 } 148 } 149 150 #dexOrderDetailsForm, 151 #cexOrderDetailsForm, 152 #depositDetailsForm, 153 #withdrawalDetailsForm { 154 min-width: 400px; 155 } 156 157 .allocation-grid { 158 display: grid; 159 grid-template-columns: 1fr auto auto; 160 161 .second { 162 grid-column: 2; 163 } 164 165 .third { 166 grid-column: 3; 167 } 168 } 169 }