mirror of
				http://git.whoc.org.uk/git/password-manager.git
				synced 2025-10-31 03:17:35 +01:00 
			
		
		
		
	Reviewed and improved export feature
This commit is contained in:
		| @@ -469,6 +469,21 @@ div.overlay { | ||||
|       -ms-animation-delay: -0.0833s; | ||||
|       -o-animation-delay: -0.0833s; | ||||
|       animation-delay: -0.0833s; } | ||||
|   div.overlay .progressBar { | ||||
|     width: 100%; | ||||
|     background-color: #222; | ||||
|     height: 4px; | ||||
|     margin-top: 86px; | ||||
|     -webkit-border-radius: 2px; | ||||
|     -moz-border-radius: 2px; | ||||
|     border-radius: 2px; } | ||||
|     div.overlay .progressBar .progress { | ||||
|       background-color: #999; | ||||
|       height: 4px; | ||||
|       display: block; | ||||
|       -webkit-border-radius: 2px; | ||||
|       -moz-border-radius: 2px; | ||||
|       border-radius: 2px; } | ||||
| 
 | ||||
| @-webkit-keyframes overlay-spin { | ||||
|   from { | ||||
| @@ -851,7 +866,8 @@ html { | ||||
|       -moz-flex: auto; | ||||
|       -ms-flex: auto; | ||||
|       flex: auto; | ||||
|       overflow: auto; } | ||||
|       overflow: scroll; | ||||
|       -webkit-overflow-scrolling: touch; } | ||||
|     #extraFeaturesPanel .extraFeatureIndex footer { | ||||
|       -webkit-box-flex: none; | ||||
|       -webkit-flex: none; | ||||
| @@ -869,6 +885,12 @@ html { | ||||
|     width: 100%; | ||||
|     height: 100%; | ||||
|     background-color: black; } | ||||
|     #extraFeaturesPanel .extraFeatureContent .extraFeature { | ||||
|       height: 100%; } | ||||
|       #extraFeaturesPanel .extraFeatureContent .extraFeature .content { | ||||
|         height: 100%; | ||||
|         overflow: scroll; | ||||
|         -webkit-overflow-scrolling: touch; } | ||||
| 
 | ||||
| .container { | ||||
|   height: 100%; | ||||
| @@ -2015,6 +2037,8 @@ span.count { | ||||
|         background-color: #333; } | ||||
|       #extraFeaturesPanel .extraFeatureIndex > div ul li > ul > li > div { | ||||
|         padding: 4px; } | ||||
|       #extraFeaturesPanel .extraFeatureIndex > div ul li > ul > li.offlineCopy { | ||||
|         cursor: default; } | ||||
|     #extraFeaturesPanel .extraFeatureIndex > div ul li h2 { | ||||
|       font-weight: 300; | ||||
|       font-size: 14pt; } | ||||
| @@ -2091,65 +2115,88 @@ span.count { | ||||
|     #extraFeaturesPanel .extraFeatureContent .extraFeature h1 { | ||||
|       font-size: 20pt; | ||||
|       padding-bottom: 20px; } | ||||
|   #extraFeaturesPanel .extraFeatureContent form label { | ||||
|     display: none; } | ||||
|   #extraFeaturesPanel .extraFeatureContent form input { | ||||
|     display: block; | ||||
|     font-size: 18pt; | ||||
|     margin-bottom: 8px; | ||||
|     padding: 6px 10px; | ||||
|     border: 0px solid white; | ||||
|     width: 350px; | ||||
|     color: black; } | ||||
|     #extraFeaturesPanel .extraFeatureContent form input.invalid { | ||||
|       border: 0px solid #ff9900; | ||||
|       color: gray; } | ||||
|   #extraFeaturesPanel .extraFeatureContent form p { | ||||
|     display: -webkit-box; | ||||
|     display: -webkit-flex; | ||||
|     display: -moz-flex; | ||||
|     display: -ms-flexbox; | ||||
|     display: flex; | ||||
|     -webkit-box-direction: normal; | ||||
|     -webkit-box-orient: horizontal; | ||||
|     -webkit-flex-direction: row; | ||||
|     -moz-flex-direction: row; | ||||
|     -ms-flex-direction: row; | ||||
|     flex-direction: row; } | ||||
|     #extraFeaturesPanel .extraFeatureContent form p input { | ||||
|       width: 30px; | ||||
|       -webkit-box-flex: auto; | ||||
|       -webkit-flex: auto; | ||||
|       -moz-box-flex: auto; | ||||
|       -moz-flex: auto; | ||||
|       -ms-flex: auto; | ||||
|       flex: auto; } | ||||
|     #extraFeaturesPanel .extraFeatureContent form p span { | ||||
|       -webkit-box-flex: auto; | ||||
|       -webkit-flex: auto; | ||||
|       -moz-box-flex: auto; | ||||
|       -moz-flex: auto; | ||||
|       -ms-flex: auto; | ||||
|       flex: auto; | ||||
|       font-size: 12pt; } | ||||
|   #extraFeaturesPanel .extraFeatureContent form button { | ||||
|     font-family: "clipperz-font"; | ||||
|     color: white; | ||||
|     font-size: 14pt; | ||||
|     border: 0px; | ||||
|     margin-top: 20px; | ||||
|     padding: 6px 10px; | ||||
|     border: 1px solid white; | ||||
|     background-color: #ff9900; | ||||
|     -webkit-transition: background-color font-weight 0.2s linear; | ||||
|     -moz-transition: background-color font-weight 0.2s linear; | ||||
|     -o-transition: background-color font-weight 0.2s linear; | ||||
|     -ms-transition: background-color font-weight 0.2s linear; | ||||
|     transition: background-color font-weight 0.2s linear; } | ||||
|     #extraFeaturesPanel .extraFeatureContent form button:disabled { | ||||
|       font-weight: 100; | ||||
|       background-color: #c0c0c0; | ||||
|       cursor: default; } | ||||
|     #extraFeaturesPanel .extraFeatureContent .extraFeature form label { | ||||
|       display: none; } | ||||
|     #extraFeaturesPanel .extraFeatureContent .extraFeature form input { | ||||
|       display: block; | ||||
|       font-size: 18pt; | ||||
|       margin-bottom: 8px; | ||||
|       padding: 6px 10px; | ||||
|       border: 0px solid white; | ||||
|       width: 350px; | ||||
|       color: black; } | ||||
|       #extraFeaturesPanel .extraFeatureContent .extraFeature form input.invalid { | ||||
|         border: 0px solid #ff9900; | ||||
|         color: gray; } | ||||
|     #extraFeaturesPanel .extraFeatureContent .extraFeature form p { | ||||
|       display: -webkit-box; | ||||
|       display: -webkit-flex; | ||||
|       display: -moz-flex; | ||||
|       display: -ms-flexbox; | ||||
|       display: flex; | ||||
|       -webkit-box-direction: normal; | ||||
|       -webkit-box-orient: horizontal; | ||||
|       -webkit-flex-direction: row; | ||||
|       -moz-flex-direction: row; | ||||
|       -ms-flex-direction: row; | ||||
|       flex-direction: row; } | ||||
|       #extraFeaturesPanel .extraFeatureContent .extraFeature form p input { | ||||
|         width: 30px; | ||||
|         -webkit-box-flex: auto; | ||||
|         -webkit-flex: auto; | ||||
|         -moz-box-flex: auto; | ||||
|         -moz-flex: auto; | ||||
|         -ms-flex: auto; | ||||
|         flex: auto; } | ||||
|       #extraFeaturesPanel .extraFeatureContent .extraFeature form p span { | ||||
|         -webkit-box-flex: auto; | ||||
|         -webkit-flex: auto; | ||||
|         -moz-box-flex: auto; | ||||
|         -moz-flex: auto; | ||||
|         -ms-flex: auto; | ||||
|         flex: auto; | ||||
|         font-size: 12pt; } | ||||
|     #extraFeaturesPanel .extraFeatureContent .extraFeature form button { | ||||
|       font-family: "clipperz-font"; | ||||
|       color: white; | ||||
|       font-size: 14pt; | ||||
|       border: 0px; | ||||
|       margin-top: 20px; | ||||
|       padding: 6px 10px; | ||||
|       border: 1px solid white; | ||||
|       background-color: #ff9900; | ||||
|       -webkit-transition: background-color font-weight 0.2s linear; | ||||
|       -moz-transition: background-color font-weight 0.2s linear; | ||||
|       -o-transition: background-color font-weight 0.2s linear; | ||||
|       -ms-transition: background-color font-weight 0.2s linear; | ||||
|       transition: background-color font-weight 0.2s linear; } | ||||
|       #extraFeaturesPanel .extraFeatureContent .extraFeature form button:disabled { | ||||
|         font-weight: 100; | ||||
|         background-color: #c0c0c0; | ||||
|         cursor: default; } | ||||
|     #extraFeaturesPanel .extraFeatureContent .extraFeature ul { | ||||
|       color: white; } | ||||
|       #extraFeaturesPanel .extraFeatureContent .extraFeature ul li { | ||||
|         padding-bottom: 40px; } | ||||
|     #extraFeaturesPanel .extraFeatureContent .extraFeature h3 { | ||||
|       font-size: 18pt; } | ||||
|     #extraFeaturesPanel .extraFeatureContent .extraFeature .description { | ||||
|       max-width: 500px; | ||||
|       padding: 10px 0px 20px 0px; } | ||||
|       #extraFeaturesPanel .extraFeatureContent .extraFeature .description p { | ||||
|         font-size: 10pt; | ||||
|         margin-bottom: 7px; | ||||
|         line-height: 1.4em; | ||||
|         color: #bbb; } | ||||
|         #extraFeaturesPanel .extraFeatureContent .extraFeature .description p em { | ||||
|           text-decoration: underline; } | ||||
|     #extraFeaturesPanel .extraFeatureContent .extraFeature .button { | ||||
|       display: inline; | ||||
|       color: white; | ||||
|       background-color: #ff9900; | ||||
|       font-size: 14pt; | ||||
|       border: 1px solid white; | ||||
|       padding: 6px 10px; } | ||||
| 
 | ||||
| .mainPage.narrow #extraFeaturesPanel .extraFeatureContent header { | ||||
|   display: block; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Giulio Cesare Solaroli
					Giulio Cesare Solaroli