index.css
1 .app-body { 2 overflow-x: unset; 3 } 4 5 .card.card-fullscreen { 6 z-index: 6; 7 } 8 9 .card.warnings-card, .card.errors-card { 10 text-transform: capitalize; 11 } 12 13 .card.warnings-card .card-options a, .card.errors-card .card-options a { 14 cursor: pointer; 15 } 16 17 .text-wrap { 18 word-wrap: break-word; 19 } 20 21 .relative { 22 position: relative; 23 } 24 25 .overflow-auto { 26 overflow: auto; 27 } 28 29 .react-json-view { 30 border-radius: .25rem; 31 } 32 33 .collapsable:hover { 34 cursor: pointer; 35 } 36 37 .contractFunction { 38 margin-bottom: 0px; 39 } 40 41 .debugButton { 42 width: 28px; 43 height: 24px; 44 } 45 46 .jumpBack { 47 background-position: 0px 48px; 48 background-image: url(images/icons.png); 49 } 50 51 .jumpForward { 52 background-position: -28px 48px; 53 background-image: url(images/icons.png); 54 } 55 56 .stepOverBack { 57 transform: scaleX(-1); 58 background-position: -56px 24px; 59 background-image: url(images/icons.png); 60 } 61 62 .stepOverForward { 63 background-position: -56px 24px; 64 background-image: url(images/icons.png); 65 } 66 67 .stepIntoForward { 68 background-position: 0px 24px; 69 background-image: url(images/icons.png); 70 } 71 72 .stepIntoBack { 73 background-position: -28px 24px; 74 background-image: url(images/icons.png); 75 } 76 77 .no-underline { 78 text-decoration: none; 79 } 80 81 .bg-black { 82 background-color: #1C1C1C; 83 }