Changeset 11203
- Timestamp:
- 08/26/2021 10:58:30 PM (3 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/scss/page-dashicons.scss
r1271 r11203 94 94 95 95 #iconlist { 96 $size: 40px; 96 $size: 96px; 97 $iconsize: 60px; 98 $gutter: 10px; 99 97 100 margin-top: 1.5em; 101 102 h4 { 103 padding-left: $gutter; 104 } 98 105 99 106 .dashicons { 100 107 position: relative; 101 108 box-sizing: content-box; 102 padding: 10px; 109 padding: $gutter; 110 margin-bottom: $gutter * 2; 103 111 width: $size; 104 112 height: $size; 105 113 overflow: hidden; 106 114 white-space: nowrap; 107 font-size: $ size;115 font-size: $iconsize; 108 116 line-height: 1; 109 117 cursor: pointer; … … 111 119 &:before { 112 120 margin-right: $size; 121 position: relative; 122 left: 20px; 113 123 } 114 124 … … 116 126 content: attr(alt); 117 127 display: block; 118 font-size: 9px;128 font-size: 14px; 119 129 color: #999; 120 130 text-align: center; 131 margin-top: $gutter; 121 132 } 122 133 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/stylesheets/page-dashicons.css
r9776 r11203 60 60 .dashicons-page #glyph .info { 61 61 float: right; 62 margin-top: 30px;62 margin-top: 50px; 63 63 width: 35%; 64 64 } … … 97 97 } 98 98 99 .dashicons-page #iconlist h4 { 100 padding-left: 10px; 101 } 102 99 103 .dashicons-page #iconlist .dashicons { 100 104 position: relative; 101 105 box-sizing: content-box; 102 106 padding: 10px; 103 width: 40px; 104 height: 40px; 107 margin-bottom: 20px; 108 width: 96px; 109 height: 96px; 105 110 overflow: hidden; 106 111 white-space: nowrap; 107 font-size: 40px;112 font-size: 60px; 108 113 line-height: 1; 109 114 cursor: pointer; … … 111 116 112 117 .dashicons-page #iconlist .dashicons:before { 113 margin-right: 40px; 118 margin-right: 96px; 119 position: relative; 120 left: 20px; 114 121 } 115 122 … … 117 124 content: attr(alt); 118 125 display: block; 119 font-size: 9px;126 font-size: 14px; 120 127 color: #999; 121 128 text-align: center; 129 margin-top: 10px; 122 130 } 123 131
Note: See TracChangeset
for help on using the changeset viewer.