This is the place where you can personalize your profile!
But, how?
By moving, adding and personalizing widgets.
You can drag and drop to rearrange.
You can edit widgets to customize them.
The bottom has widgets you can add!
Some widgets you can only access when you get a premium membership.
Some widgets have options that are only available when you get a premium membership.
We've split the page into zones!
Certain widgets can only be added to certain zones.
"Why," you ask? Because we want profile pages to have freedom of customization, but also to have some consistency. This way, when anyone visits a deviant, they know they can always find the art in the top left, and personal info in the top right.
Don't forget, restraints can bring out the creativity in you!
Now go forth and astound us all with your devious profiles!
As some of you probably already know, they did some funky stuff with the buttons in FF14, which kinda broke Stratiform's button styles.
Therefore, for the sake of compatibility we need to come up with a new version. It won't be backwards compatible, and it probably won't look anything like the current Stratiform.
Soapy, being the innovative hygiene product that he is, has completely redone the UI. It now basically looks like Colorlicious, but with more options. In other words, it is very Metro.
I think the new layout itself is pretty good, but I've never been amazingly fond of Metro. Just doesn't sit right with me for whatever reason.
So I'm asking what style of UI you guys would prefer; Metro, or something with a bit more detail (light gloss, slight rounding of edges, soft shadows, etc.)?
Our aim is to have this version available before the 5th of June (when FF14 goes beta). We have not yet discussed whether this will be v2.2 or v3.0.
Favorite moviesThe Blues Brothers and Bourne seriesFavorite bands / musical artistsGreen DayFavorite gamesMorrowind and Black Ops (I'm a CoD guy)Favorite gaming platformPC. Consoles have ruined gamingTools of the TradePhotoshop CS5.1
Hey Spew in latest Nightly 22.03 landed borderless toolbar buttons, do You know some script to fix this ugly buttons? And make them as they was in past?? Thanks.
It isn't technically possible to solve the problem, as both add-ons try to do the same thing. The best you can do is disable tab compatibility mode (see description) and only use the options in Tab Mix Plus that work with Stratiform. Both add-ons use the !important property to override as many other add-ons as possible, but because both use it, they are both fighting just as hard to change the same things in different ways, which results in a mess for some options.
We added Tab Compatibility Mode to get around this and stand down so TMP can do what it wants, but people don't like it for whatever reason.
Bug 702225 [link] landed on Nightly, it implemented the Australis (Strata 50 button) style. It's perfectly fit every Windows Visual Style. The next Stratiform've just lost 1 button style....
The new home button icon (the S50/Australis) landed on the latest nightly, I don't know which bug is for that change because they didn't have a bug for that. It's beautiful, you shouldn't have replaced it with the old one in Stratiform...
[link] Australis mock-up has a lot of things similar to chrome... Ex: App-menu turned into a button, no-border button style, custom XP frame, removed the favicon from the location-bar, no favicon for new-tabs, the tab shape,... ...but...they'll never bring all of it to FF anyway...
I know a lot of people say the border-less buttons are copying Chrome, but that isn't the case at all. Look back to Windows 98 there were border-less buttons there, probably even before that.
I see, the back button color... according to [link] they are going to implement the non-button style, I like all things in the live mock-up except the super-curve tab... current tabs are awful, those big-curve tabs make so much waste space and do not match with Windows 8 style, I prefer your curve tabs, curve but not too much...
I think they want to do the big curves because it is similar to a real tab that you find on folders and such.
These "tabs" have always square in UIs because back in the day, everything was square. It was hard to create rounded graphics. It does waste space, though.
In Stratiform 2.1, those curve tabs style, the curve at the bottom of has been reduced to match the radius of the curve at the top by putting 1px margin down, but it makes border image (selected.png) overlaps the nav-bar(tabs on top mode) and tab strip or page content(tabs on bottom mode). If you look closely, you'll notice it... So I edited the code and here is the solution: I change the margin value and add 'border-bottom-width' value, and it perfectly fixed the issue... Your code: .tabbrowser-tab[selected] .tab-background { background-color: hsl(213,41%,95%); border: 3px solid transparent; border-bottom-color: hsl(213,41%,95%); background-clip: padding-box !important; margin: -3px -5px -1px -5px !important; border-radius: 6px 6px 0 0 !important; } Fixed code: .tabbrowser-tab[selected] .tab-background { background-color: <color>; border: 3px solid transparent; border-bottom-color: <color>; background-clip: padding-box !important; _________margin: -3px -5px 0px -5px !important; border-radius: 6px 6px 0 0 !important; _________border-bottom-width: 2px !important; }
The reason we did that was because Strata40 and Soft7 require there to be a 1px overlap, so that the highlight at the top of the nav bar gets removed where the selected tab is, to make it look seamless.
It has always been this way with all of our tab curve methods (from just border images to svgs and backgrounds, to css, etc.). Now, the curve just looks a tad bit rough because we had to make a trade off. Instead of it bending in the middle, it just looks like this: / \ with a border image overlayed on top, which has a curve and a few adjustments to fake a curve in the underlying layer. The bigger you want the curve, the more "off" it looks, due to the background colour not actually being a curve shape.