Changeset 3170092
- Timestamp:
- 10/16/2024 11:41:40 AM (18 months ago)
- Location:
- ez-downloader
- Files:
-
- 5 added
- 4 edited
-
tags/1.2/assets/style.css (modified) (1 diff)
-
tags/1.3 (added)
-
tags/1.3/assets (added)
-
tags/1.3/assets/style.css (added)
-
tags/1.3/plugin-installer.php (added)
-
tags/1.3/readme.txt (added)
-
trunk/assets/style.css (modified) (1 diff)
-
trunk/plugin-installer.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ez-downloader/tags/1.2/assets/style.css
r3170086 r3170092 81 81 font-weight: 900; 82 82 } 83 84 85 * { 86 margin: 0; 87 padding: 0; 88 box-sizing: border-box; 89 90 } 91 92 .container { 93 display: flex; 94 flex-wrap: wrap; 95 gap: 10px; 96 justify-content: center; 97 padding: 10px; 98 99 } 100 101 .box { 102 display: flex; 103 flex-direction: column; /* آیتمها به صورت عمودی چیده میشوند */ 104 align-items: flex-start; 105 width: 300px; 106 height: 250px; /* ارتفاع ثابت برای هر باکس */ 107 background-color: #f1f1f1; 108 padding: 0px; 109 text-align: right; 110 border: 1px solid black; 111 border-radius: 5px; 112 overflow-y: auto; /* اسکرول عمودی برای هر باکس */ 113 } 114 115 .box a { 116 display: flex; 117 justify-content: space-between; 118 align-items: center; 119 width: 100%; 120 } 121 122 .box img { 123 width: 70px; 124 height: 70px; 125 margin-left:10px; 126 } 127 128 .box { 129 text-align: center; 130 } 131 132 .new-item { 133 margin-top: 10px; 134 width: 100%; /* این آیتم زیر سایر آیتمها قرار میگیرد */ 135 text-align: center; /* وسطچین کردن آیتم جدید */ 136 background-color: #ddd; 137 padding: 5px; 138 border-radius: 3px; 139 } 140 141 @media (max-width: 768px) { 142 .box { 143 width: 30%; 144 } 145 } 146 147 @media (max-width: 480px) { 148 .box { 149 width: 100%; 150 } 151 } 152 153 154 .box-title-1 { 155 width:100%; 156 background-color:red; 157 padding-top: 20px; 158 padding-bottom:20px; 159 margin-top:-10px; 160 color:white; 161 font-family:vazirmatn; 162 text-align: center; 163 } 164 .box-title-2 { 165 width:100%; 166 background-color:#0088cc; 167 padding-top: 20px; 168 padding-bottom:20px; 169 margin-top:-10px; 170 color:white; 171 font-family:vazirmatn; 172 text-align: center; 173 } 174 .box-title-3 { 175 width:100%; 176 background-color: green; 177 padding-top: 20px; 178 padding-bottom:20px; 179 margin-top:-10px; 180 color:white; 181 font-family:vazirmatn; 182 text-align: center; 183 } 184 .box-title-4 { 185 width:100%; 186 background-color: #1ec418; 187 padding-top: 20px; 188 padding-bottom:20px; 189 margin-top:-10px; 190 color:white; 191 font-family:vazirmatn; 192 text-align: center; 193 } 194 195 .box-title-5 { 196 width:100%; 197 background-color: #9b0740; 198 padding-top: 20px; 199 padding-bottom:20px; 200 margin-top:-10px; 201 color:white; 202 font-family:vazirmatn; 203 text-align: center; 204 } 205 .sub-title-box { 206 font-size:15px; 207 font-family:vazirmatn; 208 } 209 .sub-box { 210 padding-right:10px; 211 212 } 213 214 .host-title { 215 font-family:vazirmatn; 216 font-size:15px; 217 margin-right: 10px; 218 font-weight:800; 219 } 220 #pw_pw_gateways_setup { 221 display:none; 222 } -
ez-downloader/trunk/assets/style.css
r3166627 r3170092 81 81 font-weight: 900; 82 82 } 83 84 85 * { 86 margin: 0; 87 padding: 0; 88 box-sizing: border-box; 89 90 } 91 92 .container { 93 display: flex; 94 flex-wrap: wrap; 95 gap: 10px; 96 justify-content: center; 97 padding: 10px; 98 99 } 100 101 .box { 102 display: flex; 103 flex-direction: column; /* آیتمها به صورت عمودی چیده میشوند */ 104 align-items: flex-start; 105 width: 300px; 106 height: 250px; /* ارتفاع ثابت برای هر باکس */ 107 background-color: #f1f1f1; 108 padding: 0px; 109 text-align: right; 110 border: 1px solid black; 111 border-radius: 5px; 112 overflow-y: auto; /* اسکرول عمودی برای هر باکس */ 113 } 114 115 .box a { 116 display: flex; 117 justify-content: space-between; 118 align-items: center; 119 width: 100%; 120 } 121 122 .box img { 123 width: 70px; 124 height: 70px; 125 margin-left:10px; 126 } 127 128 .box { 129 text-align: center; 130 } 131 132 .new-item { 133 margin-top: 10px; 134 width: 100%; /* این آیتم زیر سایر آیتمها قرار میگیرد */ 135 text-align: center; /* وسطچین کردن آیتم جدید */ 136 background-color: #ddd; 137 padding: 5px; 138 border-radius: 3px; 139 } 140 141 @media (max-width: 768px) { 142 .box { 143 width: 30%; 144 } 145 } 146 147 @media (max-width: 480px) { 148 .box { 149 width: 100%; 150 } 151 } 152 153 154 .box-title-1 { 155 width:100%; 156 background-color:red; 157 padding-top: 20px; 158 padding-bottom:20px; 159 margin-top:-10px; 160 color:white; 161 font-family:vazirmatn; 162 text-align: center; 163 } 164 .box-title-2 { 165 width:100%; 166 background-color:#0088cc; 167 padding-top: 20px; 168 padding-bottom:20px; 169 margin-top:-10px; 170 color:white; 171 font-family:vazirmatn; 172 text-align: center; 173 } 174 .box-title-3 { 175 width:100%; 176 background-color: green; 177 padding-top: 20px; 178 padding-bottom:20px; 179 margin-top:-10px; 180 color:white; 181 font-family:vazirmatn; 182 text-align: center; 183 } 184 .box-title-4 { 185 width:100%; 186 background-color: #1ec418; 187 padding-top: 20px; 188 padding-bottom:20px; 189 margin-top:-10px; 190 color:white; 191 font-family:vazirmatn; 192 text-align: center; 193 } 194 195 .box-title-5 { 196 width:100%; 197 background-color: #9b0740; 198 padding-top: 20px; 199 padding-bottom:20px; 200 margin-top:-10px; 201 color:white; 202 font-family:vazirmatn; 203 text-align: center; 204 } 205 .sub-title-box { 206 font-size:15px; 207 font-family:vazirmatn; 208 } 209 .sub-box { 210 padding-right:10px; 211 212 } 213 214 .host-title { 215 font-family:vazirmatn; 216 font-size:15px; 217 margin-right: 10px; 218 font-weight:800; 219 } 220 #pw_pw_gateways_setup { 221 display:none; 222 } -
ez-downloader/trunk/plugin-installer.php
r3170086 r3170092 3 3 Plugin Name: EZ-Downloader 4 4 Description: Download and extract plugin from a URL. 5 Version: 1. 25 Version: 1.3 6 6 Author: Abolfazl Edalati 7 Author URI: https:// profiles.wordpress.org/drowranger/7 Author URI: https://wiraweb.net/ 8 8 Plugin URI: https://wiraweb.net/ 9 9 License: GPLv2 or later -
ez-downloader/trunk/readme.txt
r3170087 r3170092 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.6.2 7 Stable Tag: 1. 27 Stable Tag: 1.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.