mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
Fixed CSS styling of checkboxes
This commit is contained in:
parent
dc23bad422
commit
24b2e851bb
@ -1,5 +1,26 @@
|
||||
@extends('accounts.nav')
|
||||
|
||||
@section('head')
|
||||
@parent
|
||||
|
||||
<style type="text/css">
|
||||
/* bootstrap 3.2.0 fix */
|
||||
/* https://github.com/twbs/bootstrap/issues/13984 */
|
||||
.radio input[type="radio"],
|
||||
.checkbox input[type="checkbox"] {
|
||||
margin-left: 0;
|
||||
margin-right: 5px;
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
float: left;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
margin-top: 3px;
|
||||
}
|
||||
</style>
|
||||
|
||||
@stop
|
||||
|
||||
@section('content')
|
||||
@parent
|
||||
|
||||
|
@ -1348,7 +1348,7 @@
|
||||
|
||||
@if (Utils::isConfirmed())
|
||||
if (self.invitation_link()) {
|
||||
str += '<br/><a href="' + self.invitation_link() + '" target="_blank" style="padding-left:20px">{{ trans('texts.view_as_recipient') }}</a>';
|
||||
str += '<br/><a href="' + self.invitation_link() + '" target="_blank">{{ trans('texts.view_as_recipient') }}</a>';
|
||||
}
|
||||
@endif
|
||||
|
||||
|
@ -2880,20 +2880,6 @@ box-shadow: 0px 0px 15px 0px rgba(0, 5, 5, 0.2);
|
||||
.plans-table .pro {margin-top: 40px;}
|
||||
}
|
||||
|
||||
/* bootstrap 3.2.0 fix */
|
||||
/* https://github.com/twbs/bootstrap/issues/13984 */
|
||||
.radio input[type="radio"],
|
||||
.checkbox input[type="checkbox"] {
|
||||
margin-left: 0;
|
||||
margin-right: 5px;
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
float: left;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
label[for=recommendedGateway_id2].radio{
|
||||
min-height: 60px;
|
||||
}
|
||||
|
@ -772,20 +772,6 @@ box-shadow: 0px 0px 15px 0px rgba(0, 5, 5, 0.2);
|
||||
.plans-table .pro {margin-top: 40px;}
|
||||
}
|
||||
|
||||
/* bootstrap 3.2.0 fix */
|
||||
/* https://github.com/twbs/bootstrap/issues/13984 */
|
||||
.radio input[type="radio"],
|
||||
.checkbox input[type="checkbox"] {
|
||||
margin-left: 0;
|
||||
margin-right: 5px;
|
||||
height: inherit;
|
||||
width: inherit;
|
||||
float: left;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
label[for=recommendedGateway_id2].radio{
|
||||
min-height: 60px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user