Merge pull request #17960 from owncloud/inline-button
use inline confirm button style for password-protected links, ref #15176
This commit is contained in:
commit
dfd92bc7e0
3 changed files with 10 additions and 2 deletions
|
@ -1,5 +1,4 @@
|
||||||
#password {
|
#password {
|
||||||
width: 190px !important;
|
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 6px;
|
margin: 6px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,8 @@
|
||||||
autocomplete="off" autocapitalize="off" autocorrect="off"
|
autocomplete="off" autocapitalize="off" autocorrect="off"
|
||||||
autofocus />
|
autofocus />
|
||||||
<img class="svg" id="password-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt=""/>
|
<img class="svg" id="password-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt=""/>
|
||||||
<input type="submit" value="" class="svg icon-confirm" />
|
<input type="submit" value=""
|
||||||
|
class="svg icon-confirm input-button-inline" />
|
||||||
</p>
|
</p>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -278,6 +278,14 @@ input[type="submit"].enabled {
|
||||||
border: 1px solid #5e5;
|
border: 1px solid #5e5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.input-button-inline {
|
||||||
|
position: absolute !important;
|
||||||
|
right: 0;
|
||||||
|
background-color: transparent !important;
|
||||||
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
|
||||||
|
opacity: .3;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* CONTENT ------------------------------------------------------------------ */
|
/* CONTENT ------------------------------------------------------------------ */
|
||||||
|
|
Loading…
Reference in a new issue