-
Notifications
You must be signed in to change notification settings - Fork 253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[3.0] Theme #7933
base: release-3.0
Are you sure you want to change the base?
[3.0] Theme #7933
Conversation
Themes/default/index.template.php
Outdated
<li> | ||
<a href="', Config::$scripturl, '?action=profile"', !empty(Utils::$context['self_profile']) ? ' class="active"' : '', ' id="profile_menu_top">'; | ||
|
||
if (!empty(User::$me->avatar)) | ||
echo User::$me->avatar['image']; | ||
|
||
echo '<span class="textmenu">', User::$me->name, '</span></a> | ||
echo '</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we do this for the avatar image, shouldn't we use a alt text for the name?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should use href or url then.
Or should 'image' provide it by default? It would be good in case an external avatar is missing in other parts of the forum.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think either is valid. I believe it just needs something to be valid for screen readers. Since its a link to the users profile and we removed the name, the alt should have it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then I think 'image' should provide the alt text by default. An external avatar could suddenly not load or disappear, would be good to have it.
b7c6385
to
3a78afe
Compare
I notice that a few forms would disable textareas on submit, such as the posting form. I've changed this to do all forms by using the new HTML property to make the entire form inert. |
3ba4ff5
to
c823a49
Compare
I’m working on this Can be fixed later too, but also requires some tweaks.
I don’t have a preference, we might discuss it later for sure. |
2322f68
to
ada494b
Compare
@live627 Can you rebase this or merge and fix conflicts? |
We have this pending Will start sending more in upcoming weeks, but it could be merged, rest of changes are more focused so can be in separated PR's |
Once I can get around to testing and merging that, I'll rebase this branch again |
Themes/default/Reminder.template.php
Outdated
<div class="windowbg form_grid"> | ||
<p class="descbox">', Lang::$txt['authentication_options'], ':</p> | ||
<p> | ||
<input type="radio" name="reminder_type" id="reminder_type_email" value="email" checkeiv></label> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
checkeiv
=> checked
?
Themes/default/Register.template.php
Outdated
<input type="submit" value="', Lang::$txt['save'], '" name="save_reserved_names" tabindex="', Utils::$context['tabindex']++, '" class="button"> | ||
<div class="form_grid"> | ||
<div> | ||
<label for="matchword">', Lang::$txt['admin_match_whole'], '</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<label>...</div>
=> <label>...</label>
?
@jdarwood007 I moved some of the login javascript to its own file but don't know how to test cors requests. |
When this is closer to ready I can check it. You need to run 2 domains (or 2 subdomains) and have the forum on one and the script on another. A simple SSI page where you can open the user area popup is good enough for most things. Sending credentials such as on the login form may also need to be tested, but when you can open the user area, the CORS request works. |
Signed-off-by: Diego Andrés <[email protected]>
Signed-off-by: John Rayes <[email protected]>
Signed-off-by: Diego Andrés <[email protected]>
Signed-off-by: Diego Andrés <[email protected]>
Signed-off-by: Diego Andrés <[email protected]>
Signed-off-by: Diego Andrés <[email protected]>
Signed-off-by: Diego Andrés <[email protected]>
Signed-off-by: Diego Andrés <[email protected]>
Signed-off-by: Diego Andrés <[email protected]>
Signed-off-by: Diego Andrés <[email protected]>
Signed-off-by: Diego Andrés <[email protected]>
Signed-off-by: Diego Andrés <[email protected]>
@DiegoAndresCortes any reason for the font size to be so... large? |
I used 18px as the max because I tested with a 4k monitor. 16px is too small when the resolution is too high imo, but perhaps 17px would be better |
I wonder if that's why half of the random websites I load have huge text. I'm probably not going to be the only one to complain of the huge new font size. |
I wouldn't know, I'm probably the only freak around here running 4k screens at 100% |
I'm planning on extracting both the board index and the message index into their own seperate template helper functions. Which file shall they go in? I have them in a new file |
Yes please. |
On second thought, might just keep them in their files of primary use, similar to generic admin/profile options templates. |
This is the new theme started by @TwitchisMental
I still need to convert several form grids to use CSS grids instead of floats. Also the grids abuse definition list markup, something tat has always annoyed me from the very beginning.
Submitting as a draft now to get early feedback.