Changeset 11909
- Timestamp:
- 06/09/2022 01:21:37 PM (16 months ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/gp-translation-helpers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/gp-translation-helpers/css/discussion.css
r11837 r11909 113 113 .modal-item { 114 114 display: inline-block; 115 width: 3 0%;115 width: 33%; 116 116 margin-top: 7px; 117 117 } … … 129 129 } 130 130 .modal-comment textarea { 131 width: 97%;131 width: 100%; 132 132 height: 170px; 133 133 } … … 149 149 .modal-reason-title{ 150 150 margin-top: 12px; 151 152 153 151 margin-bottom: 10px; 152 padding-top: 10px; 153 padding-bottom: 10px; 154 154 } 155 155 #TB_title { 156 background: #f cfcfc;156 background: #f1f1f1; 157 157 border-bottom: 1px solid #ddd; 158 height: 29px; 159 padding: 13px 0; 158 height: 45px !important; 159 } 160 div#TB_ajaxContent { 161 margin:0 auto; 162 height: auto !important; 160 163 } 161 164 div#TB_ajaxWindowTitle { 162 font-size: 1.3em; 165 font-size: 1.2em; 166 padding: 8px; 163 167 } 164 168 .meta summary.feedback-summary{ … … 201 205 float: none; 202 206 } 207 208 #TB_closeWindowButton:focus .tb-close-icon { 209 -webkit-box-shadow: none; 210 box-shadow: none; 211 } -
sites/trunk/wordpress.org/public_html/wp-content/plugins/gp-translation-helpers/includes/class-wporg-notifications.php
r11837 r11909 193 193 194 194 if ( ( ! defined( 'WPORG_TRANSLATE_BLOGID' ) ) || ( false === $gp_locale ) ) { 195 return $array();195 return array(); 196 196 } 197 197 -
sites/trunk/wordpress.org/public_html/wp-content/plugins/gp-translation-helpers/js/reject-feedback.js
r11837 r11909 44 44 rowIds = $( 'input:checked', $( 'table#translations th.checkbox' ) ).map( function() { 45 45 var selectedRow = $( this ).parents( 'tr.preview' ); 46 if ( selectedRow.hasClass( 'status-current' ) ) {46 if ( ! selectedRow.hasClass( 'untranslated' ) ) { 47 47 return selectedRow.attr( 'row' ); 48 48 }
Note: See TracChangeset
for help on using the changeset viewer.