Changeset 4437
- Timestamp:
- 11/28/2016 03:20:59 AM (8 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/client/components/plugin-card/style.scss
r4393 r4437 2 2 background-color: #f9f9f9; 3 3 margin-bottom: 4%; 4 padding: 8px 8px 08px;4 padding: 15px 15px 8px; 5 5 vertical-align: top; 6 6 … … 39 39 40 40 p { 41 margin: 0 0 8px;41 margin: 0; 42 42 } 43 43 } … … 45 45 hr { 46 46 background-color: #fff; 47 margin: auto;47 margin: 15px -15px 8px; 48 48 } 49 49 … … 60 60 font-size: 1rem; 61 61 margin-right: 0.4rem; 62 } 63 64 &.last-updated { 65 display: none; 66 } 67 &.plugin-author { 68 width: 100%; 62 69 } 63 70 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/client/styles/typography/_copy.scss
r4223 r4437 68 68 font-size: 125%; 69 69 } 70 71 72 // Feedback survey link for acquiring participant's feedback. 73 74 .feedback-survey { 75 background: #fff; 76 border-radius: 3px 0 0 3px; 77 box-shadow: 0 0 8px rgba(0,0,0,.2); 78 display: block; 79 font-size: 0.8rem; 80 padding: 5px 10px; 81 position: fixed; 82 right: 0; 83 top: 200px; 84 width: 40px; 85 z-index: 100; 86 87 .survey-msg { 88 display: none; 89 } 90 91 &:hover { 92 width: auto; 93 94 .survey-msg { 95 display: inline-block; 96 } 97 } 98 99 a:hover { 100 text-decoration: none; 101 } 102 103 .dashicons-megaphone { 104 margin: 2px 10px 0 0; 105 } 106 } -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/css/style.css
r4425 r4437 378 378 big { 379 379 font-size: 125%; 380 } 381 382 .feedback-survey { 383 background: #fff; 384 -webkit-border-radius: 3px 0 0 3px; 385 border-radius: 3px 0 0 3px; 386 -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2); 387 box-shadow: 0 0 8px rgba(0, 0, 0, 0.2); 388 display: block; 389 font-size: 12.8px; 390 font-size: 0.8rem; 391 padding: 5px 10px; 392 position: fixed; 393 right: 0; 394 top: 200px; 395 width: 40px; 396 z-index: 100; 397 } 398 399 .feedback-survey .survey-msg { 400 display: none; 401 } 402 403 .feedback-survey:hover { 404 width: auto; 405 } 406 407 .feedback-survey:hover .survey-msg { 408 display: inline-block; 409 } 410 411 .feedback-survey a:hover { 412 text-decoration: none; 413 } 414 415 .feedback-survey .dashicons-megaphone { 416 margin: 2px 10px 0 0; 380 417 } 381 418 … … 1852 1889 background-color: #f9f9f9; 1853 1890 margin-bottom: 4%; 1854 padding: 8px 8px 08px;1891 padding: 15px 15px 8px; 1855 1892 vertical-align: top; 1856 1893 } … … 1897 1934 1898 1935 .plugin-card .entry-excerpt p { 1899 margin: 0 0 8px;1936 margin: 0; 1900 1937 } 1901 1938 1902 1939 .plugin-card hr { 1903 1940 background-color: #fff; 1904 margin: auto;1941 margin: 15px -15px 8px; 1905 1942 } 1906 1943 … … 1922 1959 } 1923 1960 1961 .plugin-card footer span.last-updated { 1962 display: none; 1963 } 1964 1965 .plugin-card footer span.plugin-author { 1966 width: 100%; 1967 } 1968 1924 1969 .plugin-card footer .dashicons { 1925 1970 margin: 0 2px -16px; … … 2003 2048 .site-main.single .plugin-rating .rating-count { 2004 2049 display: none; 2005 }2006 2007 .plugin-rating .rating-count a {2008 color: inherit;2009 cursor: hand;2010 text-decoration: none;2011 2050 } 2012 2051 … … 2209 2248 } 2210 2249 2211 #faqh2:first-of-type {2250 .plugin-faqs h2:first-of-type { 2212 2251 font-size: 20px; 2213 2252 font-size: 1.25rem; … … 2222 2261 } 2223 2262 2224 #faqdl {2263 .plugin-faqs dl { 2225 2264 border-bottom: 1px solid #eee; 2226 2265 } 2227 2266 2228 #faqdt {2267 .plugin-faqs dt { 2229 2268 border-top: 1px solid #eee; 2230 2269 cursor: pointer; … … 2236 2275 } 2237 2276 2238 #faqdt:before {2277 .plugin-faqs dt:before { 2239 2278 content: "\f347"; 2240 2279 float: right; … … 2244 2283 } 2245 2284 2246 #faqdt.open:before {2285 .plugin-faqs dt.open:before { 2247 2286 content: "\f343"; 2248 2287 } 2249 2288 2250 #faqdd {2289 .plugin-faqs dd { 2251 2290 display: none; 2252 2291 margin: 0 0 16px; … … 2254 2293 } 2255 2294 2256 #faqdd p {2295 .plugin-faqs dd p { 2257 2296 margin: 0; 2258 2297 } 2259 2298 2260 #faqdd p + p {2299 .plugin-faqs dd p + p { 2261 2300 margin-top: 16px; 2262 2301 margin-top: 1rem; 2263 2302 } 2264 2303 2265 .no-js #faqdd {2304 .no-js .plugin-faqs dd { 2266 2305 display: block; 2267 2306 } … … 2562 2601 } 2563 2602 2564 . section.read-more {2603 .read-more { 2565 2604 border-bottom: 2px solid #eee; 2566 2605 max-height: 200px; … … 2569 2608 } 2570 2609 2571 .section.read-more#description { 2610 .read-more#reviews { 2611 max-height: none; 2612 overflow: auto; 2613 } 2614 2615 .read-more:nth-of-type(1) { 2572 2616 max-height: 400px; 2573 2617 } 2574 2618 2575 .section.read-more#description.toggled { 2576 max-height: none; 2577 } 2578 2579 .section.read-more.toggled { 2580 max-height: none; 2581 } 2582 2583 .section h1, .section h2, .section h3 { 2619 .read-more h1, .read-more h2, .read-more h3 { 2584 2620 font-size: 16px; 2585 2621 font-size: 1rem; … … 2590 2626 } 2591 2627 2592 . section h1:nth-child(2), .section h2:nth-child(2), .sectionh3:nth-child(2) {2628 .read-more h1:nth-child(2), .read-more h2:nth-child(2), .read-more h3:nth-child(2) { 2593 2629 margin-top: 0; 2594 2630 } 2595 2631 2596 . section h4, .section h5, .sectionh6 {2632 .read-more h4, .read-more h5, .read-more h6 { 2597 2633 font-size: 12.8px; 2598 2634 font-size: 0.8rem; … … 2603 2639 } 2604 2640 2605 . section h4:nth-child(2), .section h5:nth-child(2), .sectionh6:nth-child(2) {2641 .read-more h4:nth-child(2), .read-more h5:nth-child(2), .read-more h6:nth-child(2) { 2606 2642 margin-top: 0; 2607 2643 } 2608 2644 2609 . sectionh2:first-of-type {2645 .read-more h2:first-of-type { 2610 2646 font-size: 20px; 2611 2647 font-size: 1.25rem; … … 2617 2653 } 2618 2654 2619 . sectionp:first-child {2655 .read-more p:first-child { 2620 2656 margin-top: 0; 2657 } 2658 2659 .read-more.toggled { 2660 max-height: none; 2661 } 2662 2663 #screenshots.read-more { 2664 border-bottom: none; 2621 2665 } 2622 2666 … … 2871 2915 } 2872 2916 2873 nav .nav-links {2874 text-align: center;2875 }2876 2877 nav .nav-links .page-numbers {2878 background-color: #f9f9f9;2879 min-width: 2em;2880 padding: 8px;2881 display: inline-block;2882 cursor: hand;2883 }2884 2885 nav .nav-links .page-numbers.next, nav .nav-links .page-numbers.prev, nav .nav-links .page-numbers.dots {2886 width: auto;2887 font-size: 0.9em;2888 background: none;2889 }2890 2891 nav .nav-links .page-numbers.dots {2892 cursor: inherit;2893 }2894 2895 nav .nav-links span.page-numbers {2896 font-weight: bold;2897 background-color: #f7f7f7;2898 }2899 2900 2917 .main-navigation { 2901 2918 background: #0073aa; … … 3341 3358 } 3342 3359 } 3360 /*# sourceMappingURL=style.css.map */
Note: See TracChangeset
for help on using the changeset viewer.