Changeset 1312892
- Timestamp:
- 12/20/2015 02:41:13 PM (10 years ago)
- Location:
- blue-storage/trunk
- Files:
-
- 2 edited
-
blue-storage-settings.php (modified) (5 diffs)
-
css/blue-storage.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
blue-storage/trunk/blue-storage-settings.php
r1312890 r1312892 65 65 } 66 66 67 echo '<p style="margin: 10px; color: red;">Deleted all files in container "' . $selected_container_name . '"</p><br/>';67 echo '<p id="notice">Deleted all files in container "' . $selected_container_name . '"</p><br/>'; 68 68 } 69 69 else { 70 echo '<p style="margin: 10px; color: red;">You did not check the box confirming the delete operation.</p><br/>';70 echo '<p id="notice">You did not check the box confirming the delete operation.</p><br/>'; 71 71 } 72 72 } … … 103 103 } 104 104 } 105 echo '<p style="margin: 10px; color: red;">' . 'Finished copying files to "' . $selected_container_name . '" container on Azure.</p><br/>';105 echo '<p id="notice">' . 'Finished copying files to "' . $selected_container_name . '" container on Azure.</p><br/>'; 106 106 } 107 107 } … … 164 164 <input type = 'hidden' name = 'selected_container' value = '<?php echo get_option('default_azure_storage_account_container_name')?>'/> 165 165 <label style = "font-weight: bold;" > Delete all uploaded files from this site in "<?php echo get_option('default_azure_storage_account_container_name')?>"</label > 166 <br/>Yes, I really want to <span style="color:red;">delete everything</span>. I know this is irreversable. <input type = checkbox name = "confirm"/>166 <br/>Yes, I really want to <span id="warning">delete everything</span>. I know this is irreversable. <input type = checkbox name = "confirm"/> 167 167 <br/> 168 168 <input type = "submit" value = "Delete All Files" id="blue-storage-red-button"/> … … 351 351 $containerAcl = $getContainerAclResult->getContainerAcl(); 352 352 if ($containerAcl->getPublicAccess() == PublicAccessType::NONE) { 353 $privateContainerWarning = "<p style=\"margin: 10px; color: red;\">Warning: The container '$defaultContainer' you set as default is a private container. Plugin supports only public container, please set a public container as default</p>";353 $privateContainerWarning = '<p id="notice">Warning: The container '.$defaultContainer.' you set as default is a private container. Plugin supports only public container, please set a public container as default</p>'; 354 354 } 355 355 } … … 487 487 <?php 488 488 echo (get_option('azure_storage_use_for_default_upload') ? 'checked="checked" ' : ''); ?> /> 489 <label for="wp-uploads"> Use Azure Storage when uploading via the Media library. </label><span style="color: red; font-weight: bold;">Highly recommended</span>489 <label for="wp-uploads"> Use Azure Storage when uploading via the Media library. </label><span id="warning">Highly recommended</span> 490 490 <br /><small>Checking this box allows you to automatically use Azure when uploading media.</small> 491 491 <br /><small>You can change this option at any time to switch between Azure and local storage.</small> -
blue-storage/trunk/css/blue-storage.css
r1312890 r1312892 12 12 border-color:#16a300; 13 13 } 14 15 #notice { 16 margin:10px; 17 color:red; 18 } 19 20 #warning { 21 color: red; 22 font-weight: bold; 23 }
Note: See TracChangeset
for help on using the changeset viewer.