Browse Source

update class names

main
ghost 1 year ago
parent
commit
f0a38e1bf5
  1. 6
      public/asset/default/css/framework.css
  2. 2
      templates/default/torrent/edit/locales.html.twig
  3. 2
      templates/default/user/dashboard.html.twig
  4. 2
      templates/default/user/info.html.twig
  5. 2
      templates/default/user/profile.html.twig

6
public/asset/default/css/framework.css

@ -152,7 +152,7 @@ a.label-green:hover { @@ -152,7 +152,7 @@ a.label-green:hover {
border-radius: 50%;
}
.border-pink-light {
.border-color-pink-light {
border: 1px #9b6895 solid;
}
@ -164,11 +164,11 @@ a.label-green:hover { @@ -164,11 +164,11 @@ a.label-green:hover {
border: 1px #65916d solid;
}
.border-bottom-pink {
.border-color-pink {
border-bottom: 1px #a44399 solid;
}
.border-default {
.border-color-default {
border: 1px #5d627d solid;
}

2
templates/default/torrent/edit/locales.html.twig

@ -63,7 +63,7 @@ @@ -63,7 +63,7 @@
{% endif %}
{{ 'by'|trans }}
<a href="{{ path('user_info', { id : edition.user.id }) }}">
<img class="border-radius-50 border-color-green vertical-align-middle" src="{{ edition.user.identicon }}" alt="{{'identicon'|trans }}" />
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ edition.user.identicon }}" alt="{{'identicon'|trans }}" />
</a>
<div class="float-right">
{% if edition.approved %}

2
templates/default/user/dashboard.html.twig

@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
<div class="row">
<div class="column width-80">
<a href="{{ path('user_info', {'id': activity.user.id}) }}">
<img class="vertical-align-middle border-radius-50 border-default border-width-2-px margin-r-8-px"
<img class="vertical-align-middle border-radius-50 border-color-default border-width-2-px margin-r-8-px"
src="{{ activity.user.identicon }}"
alt="{{ 'identicon'|trans }}" />
</a>

2
templates/default/user/info.html.twig

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
{% block main_content %}
<div class="padding-24-px margin-y-8-px border-radius-3-px background-color-night">
<div class="text-center">
<img class="border-radius-50 border-default border-width-2-px" src="{{ user.identicon }}" alt="{{ 'identicon'|trans }}" />
<img class="border-radius-50 border-color-default border-width-2-px" src="{{ user.identicon }}" alt="{{ 'identicon'|trans }}" />
</div>
<h2>{{ 'Profile'|trans }}</h2>
<table class="width-100">

2
templates/default/user/profile.html.twig

@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
<div class="padding-24-px margin-y-8-px border-radius-3-px background-color-night">
<form name="profile" action="{{ path('user_profile') }}" method="post">
<div class="text-center">
<img class="border-radius-50 border-default border-width-2-px" src="{{ user.identicon }}" alt="{{ 'identicon'|trans }}" />
<img class="border-radius-50 border-color-default border-width-2-px" src="{{ user.identicon }}" alt="{{ 'identicon'|trans }}" />
</div>
<h2>{{ 'Profile'|trans }}</h2>
<table class="width-100">

Loading…
Cancel
Save