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 1784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1795 background-color: #0489c3; | 1795 background-color: #0489c3; |
1796 } | 1796 } |
1797 | 1797 |
1798 /* nav-menu */ | 1798 /* nav-menu */ |
1799 li.nav-menu:before { | 1799 li.nav-menu:before { |
1800 display: inline-block; | 1800 display: inline-block; |
1801 content: '>'; | 1801 content: '>'; |
1802 margin-left: 0.5em; | 1802 margin-left: 0.5em; |
1803 margin-right: 0.5em; | 1803 margin-right: 0.5em; |
1804 } | 1804 } |
1805 nav.nav-bar > ul *:first-child li.nav-menu:before { | 1805 nav.nav-bar > ul *:first-child li.nav-menu:before, |
1806 nav.nav-bar > ul nav-reload > li:before { | |
1806 content: ''; | 1807 content: ''; |
1807 margin-left: 0; | 1808 margin-left: 0; |
1808 margin-right: 0; | 1809 margin-right: 0; |
1809 } | 1810 } |
1810 li.nav-menu, .nav-menu_label { | 1811 li.nav-menu, .nav-menu_label { |
1811 display: inline-block; | 1812 display: inline-block; |
1812 } | 1813 } |
1813 .nav-menu_label > a { | 1814 .nav-menu_label > a { |
1814 display: inline-block; | 1815 display: inline-block; |
1815 padding: 12px 8px; | 1816 padding: 12px 8px; |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1965 } | 1966 } |
1966 nav-refresh > li > button[disabled] { | 1967 nav-refresh > li > button[disabled] { |
1967 color: #aaa; | 1968 color: #aaa; |
1968 cursor: wait; | 1969 cursor: wait; |
1969 } | 1970 } |
1970 nav-refresh > li { | 1971 nav-refresh > li { |
1971 float: right; | 1972 float: right; |
1972 margin: 0; | 1973 margin: 0; |
1973 } | 1974 } |
1974 | 1975 |
1976 /* nav-refresh */ | |
1977 | |
1978 nav-reload > li > button { | |
1979 color: #000; | |
1980 margin: 3px; | |
1981 padding: 8px; | |
1982 border-width: 2px; | |
1983 line-height: 13px; | |
1984 font-size: 13px; | |
1985 font: 400 'Montserrat', sans-serif; | |
1986 } | |
1987 nav-reload ul > li { | |
1988 display: block; | |
1989 width: 100%; | |
1990 padding: 2px; | |
1991 } | |
1992 nav-reload ul > li > button { | |
1993 display: inline-block; | |
1994 padding: 8px; | |
1995 width: 100%; | |
1996 } | |
1997 nav-reload > li > button[disabled], | |
1998 nav-reload ul > li > button[disabled] { | |
1999 color: #aaa; | |
2000 cursor: wait; | |
2001 } | |
2002 nav-reload > li { | |
2003 float: right; | |
2004 margin: 0; | |
2005 } | |
2006 | |
2007 | |
bkonyi
2017/07/13 23:00:44
Should there be an extra newline here?
cbernaschina
2017/07/13 23:32:35
Done.
| |
1975 /* object-common && class-instances */ | 2008 /* object-common && class-instances */ |
1976 | 2009 |
1977 class-instances button:hover, | 2010 class-instances button:hover, |
1978 object-common button:hover { | 2011 object-common button:hover { |
1979 background-color: transparent; | 2012 background-color: transparent; |
1980 border: none; | 2013 border: none; |
1981 text-decoration: underline; | 2014 text-decoration: underline; |
1982 } | 2015 } |
1983 class-instances button, | 2016 class-instances button, |
1984 object-common button { | 2017 object-common button { |
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2529 | 2562 |
2530 vm-connect-target > button.delete-button:hover { | 2563 vm-connect-target > button.delete-button:hover { |
2531 background: #ff0000; | 2564 background: #ff0000; |
2532 } | 2565 } |
2533 | 2566 |
2534 /* vm-connect */ | 2567 /* vm-connect */ |
2535 | 2568 |
2536 vm-connect ul { | 2569 vm-connect ul { |
2537 list-style-type: none; | 2570 list-style-type: none; |
2538 } | 2571 } |
OLD | NEW |