OLD | NEW |
1 /* Global styles */ | 1 /* Global styles */ |
2 * { | 2 * { |
3 margin: 0; | 3 margin: 0; |
4 padding: 0; | 4 padding: 0; |
5 box-sizing: border-box; | 5 box-sizing: border-box; |
6 } | 6 } |
7 | 7 |
8 body { | 8 body { |
9 padding-top: 56px; | 9 padding-top: 56px; |
10 color: #333; | 10 color: #333; |
(...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
844 } | 844 } |
845 eval-box-wrapped .heading .textbox { | 845 eval-box-wrapped .heading .textbox { |
846 width: 100%; | 846 width: 100%; |
847 min-width: 300px; | 847 min-width: 300px; |
848 } | 848 } |
849 eval-box-wrapped .heading .buttons { | 849 eval-box-wrapped .heading .buttons { |
850 position: absolute; | 850 position: absolute; |
851 top: 0; | 851 top: 0; |
852 right: 0px; | 852 right: 0px; |
853 } | 853 } |
| 854 eval-box-wrapped .heading .buttons button{ |
| 855 margin-right: 1em; |
| 856 } |
854 eval-box-wrapped.historyExpr, | 857 eval-box-wrapped.historyExpr, |
855 eval-box-wrapped .historyValue { | 858 eval-box-wrapped .historyValue { |
856 vertical-align: text-top; | 859 vertical-align: text-top; |
857 font: 400 14px 'Montserrat', sans-serif; | 860 font: 400 14px 'Montserrat', sans-serif; |
858 } | 861 } |
859 eval-box-wrapped .historyExpr button { | 862 eval-box-wrapped .historyExpr button { |
860 display: block; | 863 display: block; |
861 color: black; | 864 color: black; |
862 border: none; | 865 border: none; |
863 background: none; | 866 background: none; |
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1735 | 1738 |
1736 vm-connect-target > button.delete-button:hover { | 1739 vm-connect-target > button.delete-button:hover { |
1737 background: #ff0000; | 1740 background: #ff0000; |
1738 } | 1741 } |
1739 | 1742 |
1740 /* vm-connect */ | 1743 /* vm-connect */ |
1741 | 1744 |
1742 vm-connect ul { | 1745 vm-connect ul { |
1743 list-style-type: none; | 1746 list-style-type: none; |
1744 } | 1747 } |
OLD | NEW |