1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00

Updated class name

This commit is contained in:
eldadfux 2019-08-12 00:52:36 +03:00
parent 2f9882eed6
commit e628de0723
7 changed files with 13 additions and 11 deletions

View file

@ -128,7 +128,7 @@ use Utopia\Locale\Locale;
</div>
<div class="col span-3 text-center">
<div class="col span-3 text-align-center">
<img src="" data-ls-attrs="src={{account|gravatar}}" data-size="200" height="150" alt="User Avatar" class="avatar huge huge margin-bottom-small" />
<br />

View file

@ -63,7 +63,7 @@ use Utopia\Locale\Locale;
<div class="col span-3 box-aside">
<label for="name">Logo</label>
<div class="text-center clear">
<div class="text-align-center clear">
<input type="hidden" name="logo" data-ls-bind="{{console-project.logo}}" data-read="<?php echo $this->escape(json_encode(['*'])); ?>" data-write="<?php echo $this->escape(json_encode(['team:{{console-project.teamId}}'])); ?>" data-accept="image/*" data-forms-upload="" data-scope="console" data-default="">
</div>
</div>
@ -95,7 +95,9 @@ use Utopia\Locale\Locale;
<input name="legalName" id="legalName" type="text" autocomplete="off" data-ls-bind="{{console-project.legalName}}" data-forms-text-direction>
<label for="legalCountry">Country</label>
<select id="legalCountry" name="legalCountry" data-ls-options="{{geo-countries}}" data-ls-bind="{{console-project.legalCountry}}"></select>
<select id="legalCountry" name="legalCountry" data-ls-bind="{{console-project.legalCountry}}" data-ls-loop="locale-countries" data-ls-as="option">
<option data-ls-attrs="value={{$index}}" data-ls-bind="{{option}}"></option>
</select>
<label for="legalCity">City</label>
<input name="legalCity" id="legalCity" type="text" autocomplete="off" data-ls-bind="{{console-project.legalCity}}" data-forms-text-direction>

View file

@ -96,7 +96,7 @@ $limit = 5;
</table>
</div>
<div class="clear">
<div class="clear text-align-center">
<span class="pull-end paging" data-sum="{{project-users.sum}}" data-offset="{{filter-users.keys.offset}}" data-limit="{{filter-users.keys.limit}}"></span>
<button type="button" class="margin-end round small" aria-label="Back"><i class="icon-left-open"></i></button>

View file

@ -32,7 +32,7 @@ use Utopia\Locale\Locale;
<div class="row responsive margin-top-xl">
<div class="col span-8">
<div class="box margin-bottom-large">
<div class="text-center">
<div class="text-align-center">
<img src="" data-ls-attrs="src={{user|gravatar}}" data-size="200" alt="User Avatar" class="avatar huge margin-top-negative-xxl" />
<div class="margin-top-small note" data-ls-bind="Member since {{user.registration|date-text}}"></div>

View file

@ -1,3 +1,3 @@
<div class="logo text-center">
<div class="logo text-align-center">
<a href="/"><img src="/images/appwrite.svg" alt="Appwrite Logo" /></a>
</div>

File diff suppressed because one or more lines are too long

View file

@ -73,10 +73,6 @@ small, .note {
text-overflow: ellipsis;
}
.text-center {
text-align: center;
}
.text-bold {
font-weight: 400!important;
}
@ -132,6 +128,10 @@ small, .note {
display: inline-block;
}
.text-align-center {
text-align: center;
}
.text-align-start {
text-align: @config-start;
}