| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- .col-list-tree {
- line-height: 25px;
- .ant-tree-node-content-wrapper {
- width: calc(100% - 28px);
- }
- .opts-icon,
- .case-delete-icon {
- line-height: 25px;
- width: 30px;
- font-weight: bold;
- }
- .opts-icon:hover,
- .case-delete-icon:hover {
- color: #2395f1;
- }
- .menu-title {
- display: flex;
- justify-content: space-between;
- overflow: hidden;
- .casename {
- overflow: hidden;
- }
- .case-delete-icon {
- margin-left: 5px;
- display: none;
- }
- .btns {
- display: none;
- }
- }
- .menu-title:hover {
- .case-delete-icon {
- display: block;
- }
- .btns {
- display: block;
- }
- }
- }
- .container {
- display: block;
- width: 100%;
- padding: 10px;
- }
- /*
- * note that styling gu-mirror directly is a bad practice because it's too generic.
- * you're better off giving the draggable elements a unique class and styling that directly!
- */
- .gu-mirror {
- padding: 10px;
- background-color: rgba(0, 0, 0, 0.2);
- transition: opacity 0.4s ease-in-out;
- }
- .container div {
- cursor: move;
- cursor: grab;
- cursor: -moz-grab;
- cursor: -webkit-grab;
- margin-bottom: 10px;
- }
- .container div:last-child {
- margin-bottom: 0;
- }
- .gu-mirror {
- cursor: grabbing;
- cursor: -moz-grabbing;
- cursor: -webkit-grabbing;
- }
- .container .ex-moved {
- background-color: #e74c3c;
- }
- .container.ex-over {
- background-color: rgba(255, 255, 255, 0.3);
- }
- .handle {
- padding: 0 5px;
- margin-right: 5px;
- background-color: rgba(0, 0, 0, 0.4);
- cursor: move;
- }
- .report {
- min-height: 500px;
- .case-report-pane {
- margin-top: 10px;
- }
- .url {
- overflow: auto;
- }
- .case-report {
- margin: 10px;
- .case-report-title {
- font-size: 14px;
- font-weight: bold;
- text-align: right;
- padding-right: 20px;
- }
- pre {
- white-space: pre-wrap;
- }
- }
- }
- .interface-col {
- padding: 24px;
- .interface-col-table-header {
- background-color: rgb(238, 238, 238);
- height: 50px;
- line-height: 50px;
- text-align: left;
- }
- .interface-col-table-body {
- height: 50px;
- line-height: 50px;
- }
- .interface-col-table-header th {
- padding-left: 5px;
- }
- .interface-col-table-body td {
- padding-left: 5px;
- }
- .interface-col-table-action button {
- margin-right: 5px;
- padding: 5px 10px;
- max-width: 90px;
- }
- .component-label-wrapper {
- margin-top: -10px;
- margin-bottom: 15px;
- }
- }
- .import-case-modal {
- .ant-modal-body {
- max-height: 800px;
- overflow-y: scroll;
- }
- .select-project {
- margin-bottom: 16px;
- }
- }
- .autoTestsModal {
- .autoTestUrl {
- overflow: auto;
- background-color: #f5f5f5;
- border: 1px solid #f1f1f1ce;
- padding: 16px;
- }
- .autoTestMsg {
- padding: 8px 0 16px;
- font-size: 12px;
- }
- .copy-btn {
- margin-left: 16px;
- height: 50px;
- font-size: 14px;
- width: 70px;
- }
- .ant-modal-body {
- padding-top: 32px;
- }
- .row {
- margin-bottom: 0.24rem;
- }
- .label {
- text-align: left;
- }
- }
- .tree-wrapper {
- min-height: 500px;
- overflow-y: scroll;
- }
|