mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-17 19:42:15 +00:00
Created new CSS entry for equipment-title and modified inventory.jade accordingly
This commit is contained in:
parent
2e64b03a63
commit
875698c111
2 changed files with 6 additions and 2 deletions
|
|
@ -15,6 +15,10 @@
|
|||
.modal-header .gem-wallet
|
||||
padding-top: 0px
|
||||
|
||||
.equipment-title
|
||||
display: inline-block
|
||||
vertical-align: middle
|
||||
|
||||
|
||||
// pets (this will all change when pet system is overhauled)
|
||||
.pet-grid
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
script(type='text/ng-template', id='partials/options.inventory.equipment.html')
|
||||
.row-fluid
|
||||
.span6.border-right
|
||||
h3=env.t('battleGear')
|
||||
h3.equipment-title=env.t('battleGear')
|
||||
|
||||
i.icon-question-sign(popover-trigger='mouseenter', popover-placement='right', popover=env.t('battleGearText'), style="display: inline-block;")
|
||||
li.customize-menu.inventory-gear
|
||||
|
|
@ -9,7 +9,7 @@ script(type='text/ng-template', id='partials/options.inventory.equipment.html')
|
|||
div(ng-repeat='item in gear[klass]')
|
||||
button.customize-option(popover='{{item.notes}}', popover-title='{{item.text}}', popover-trigger='mouseenter', popover-placement='right', ng-click='user.ops.equip({params:{key:item.key}})', class='shop_{{item.key}}', ng-class='{selectableInventory: user.items.gear.equipped[item.type] == item.key}')
|
||||
.span6
|
||||
h3(style="display: inline-block; vertical-align: middle;")=env.t('costume')
|
||||
h3.equipment-title=env.t('costume')
|
||||
|
||||
i.icon-question-sign(popover-trigger='mouseenter', popover-placement='right', popover=env.t('costumeText'))
|
||||
label.checkbox.inline(style="margin-left: 20px;")
|
||||
|
|
|
|||
Loading…
Reference in a new issue