mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 14:17:22 +01:00
Many ie style fixes (#9728)
This commit is contained in:
@@ -7,7 +7,7 @@ const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|||||||
|
|
||||||
// add hot-reload related code to entry chunks
|
// add hot-reload related code to entry chunks
|
||||||
Object.keys(baseWebpackConfig.entry).forEach((name) => {
|
Object.keys(baseWebpackConfig.entry).forEach((name) => {
|
||||||
baseWebpackConfig.entry[name] = ['./webpack/dev-client'].concat(baseWebpackConfig.entry[name]);
|
baseWebpackConfig.entry[name] = baseWebpackConfig.entry[name].concat('./webpack/dev-client');
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = merge(baseWebpackConfig, {
|
module.exports = merge(baseWebpackConfig, {
|
||||||
|
|||||||
@@ -49,6 +49,10 @@ div
|
|||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.row {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-size: 32px;
|
font-size: 32px;
|
||||||
|
|||||||
@@ -223,6 +223,7 @@
|
|||||||
|
|
||||||
.svg-icon {
|
.svg-icon {
|
||||||
width: 10px;
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -57,6 +57,7 @@ b-modal#create-party-modal(title="Empty", size='lg', hide-footer=true)
|
|||||||
.header-wrap {
|
.header-wrap {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
color: #4e4a57;
|
color: #4e4a57;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
.quest_screen {
|
.quest_screen {
|
||||||
background-image: url('~client/assets/images/quest_screen.png');
|
background-image: url('~client/assets/images/quest_screen.png');
|
||||||
|
|||||||
@@ -146,6 +146,7 @@
|
|||||||
|
|
||||||
.svg-icon.shield, .svg-icon.gem {
|
.svg-icon.shield, .svg-icon.gem {
|
||||||
width: 28px;
|
width: 28px;
|
||||||
|
height: 28px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
|
|||||||
@@ -64,6 +64,7 @@ transition(name="fade")
|
|||||||
|
|
||||||
.svg-icon {
|
.svg-icon {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
margin-right: .5em;
|
margin-right: .5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -103,6 +103,7 @@ div(v-if='user.stats.lvl > 10')
|
|||||||
|
|
||||||
.svg-icon {
|
.svg-icon {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
margin-right: .2em;
|
margin-right: .2em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -492,8 +492,13 @@
|
|||||||
border-top-left-radius: 8px;
|
border-top-left-radius: 8px;
|
||||||
border-top-right-radius: 8px;
|
border-top-right-radius: 8px;
|
||||||
margin-top: 50px;
|
margin-top: 50px;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
span {
|
||||||
|
display: block;
|
||||||
|
margin: 0 auto;
|
||||||
|
width: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
.delete-task-btn {
|
.delete-task-btn {
|
||||||
color: $red-50;
|
color: $red-50;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
div
|
div
|
||||||
b-modal#profile(title="Profile", size='lg', :hide-footer="true")
|
b-modal#profile(title="Profile", size='lg', :hide-footer="true")
|
||||||
div(slot='modal-header')
|
.header(slot='modal-header')
|
||||||
.profile-actions
|
.profile-actions
|
||||||
button.btn.btn-secondary.message-icon(@click='sendMessage()', v-b-tooltip.hover.left="$t('sendMessage')")
|
button.btn.btn-secondary.message-icon(@click='sendMessage()', v-b-tooltip.hover.left="$t('sendMessage')")
|
||||||
.svg-icon.message-icon(v-html="icons.message")
|
.svg-icon.message-icon(v-html="icons.message")
|
||||||
@@ -293,11 +293,23 @@ div
|
|||||||
background: #f9f9f9;
|
background: #f9f9f9;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.message-icon svg {
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gift-icon svg {
|
||||||
|
height: 14px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import '~client/assets/scss/colors.scss';
|
@import '~client/assets/scss/colors.scss';
|
||||||
|
|
||||||
|
.header {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.profile-actions {
|
.profile-actions {
|
||||||
float: right;
|
float: right;
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
|
|||||||
Reference in New Issue
Block a user