diff --git src/wp-admin/css/list-tables.css src/wp-admin/css/list-tables.css
index 09514f3..1582481 100644
|
|
div.action-links, |
1915 | 1915 | -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); |
1916 | 1916 | box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1); |
1917 | 1917 | } |
| 1918 | |
| 1919 | /* My Sites */ |
| 1920 | table.my-sites td { |
| 1921 | width: 94%; |
| 1922 | float: left; |
| 1923 | padding: 8px 3%; |
| 1924 | } |
| 1925 | |
| 1926 | table.my-sites.striped > tbody > :nth-child(odd), |
| 1927 | .alternate { |
| 1928 | background-color: inherit; |
| 1929 | } |
| 1930 | |
| 1931 | table.my-sites.striped > tbody > tr > :nth-child(odd), |
| 1932 | .alternate { |
| 1933 | background-color: #f9f9f9; |
| 1934 | } |
1918 | 1935 | } |
diff --git src/wp-admin/my-sites.php src/wp-admin/my-sites.php
index 743b847..4ac0a6d 100644
|
|
else : |
75 | 75 | do_action( 'myblogs_allblogs_options' ); |
76 | 76 | ?> |
77 | 77 | <br clear="all" /> |
78 | | <table class="widefat fixed striped"> |
| 78 | <table class="my-sites widefat fixed striped"> |
79 | 79 | <?php |
80 | 80 | /** |
81 | 81 | * Enable the Global Settings section on the My Sites screen. |