[00:46] AlanBell: did you need me? [04:15] AlanBell: initially we'll test it by adding the user style sheet in the preferences... if it gets well accepted we do something that allows a user to more easily use it [07:21] mhall119: all sorted now, thanks [09:09] newz2000, there is an issue with the new theme [09:09] all RTL pages becomes LTR [12:36] daker: example page? [12:37] AlanBell, https://wiki.ubuntu.com/MoroccanTeam/AR [12:39] AlanBell, look at this [13:07] yeah, but there is rtl at the content level [13:07] it is displaying rtl [13:09] if you look at the lists the bullets are on the right and the full stops are on the left, if it was ltr they would be the other way round [13:10] it should probably be right justified, which isn't quite the same thing as direction [13:10]
[13:10]
[13:15] yeah, it is because text-align is set [13:15] if it wasn't then it would align based on direction [13:17] i saw that [13:17] #content {text-align:right;} [13:18] should fix it [13:29] nope, that would be a disaster! [13:30] text-align needs to be not set [13:30] there doesn't appear to be an actual css value for that which is odd [13:31] firebug lists the computed value as "text-align:start;" [13:32] oh, that is a real value http://www.w3.org/TR/2010/WD-css3-text-20101005/#text-align [13:32] daker: can you file a bug for it please [13:32] sure [13:37] AlanBell, a quick fix [13:37] #content-rtl {text-align:right;} [13:38] and if the page is RTL just add rtl to id="content$dir" [13:38] hmm, what about mixed pages? [13:38] surely text-align:start; is better [13:40] AlanBell, you are right [13:42] AlanBell, bug 674504 [13:42] Launchpad bug 674504 in ubuntu-website "RTL direction is not applied correctly (affects: 1) (heat: 6)" [Undecided,New] https://launchpad.net/bugs/674504 === CaioAlonso_ is now known as CaioAlonso [14:00] could some other people have a ponder about bug 674504 please [14:00] Launchpad bug 674504 in ubuntu-website "RTL direction is not applied correctly (affects: 1) (heat: 8)" [Undecided,Confirmed] https://launchpad.net/bugs/674504 [14:01] I think the issue is that in reset.css which is supposed to clear the styles it sets text-align to left. That isn't the default or optimum text-align, it should be start. [14:03] *[dir="rtl"] #content {text-align:start;} [14:03] ^^ correct syntax for ugly hack method of fixing it [14:25] Hi all.. [14:25] hi l3on [14:25] newz2000: ubuntu.com template is available? [14:26] l3on: no, not precisely, but there are community created versions available at https://code.launchpad.net/ubuntu-website [14:26] ubuntu.china has the u.c theme :) [14:27] not quite, and we don't endorse copying the site like they do [14:27] they reverse engineered it [14:27] mmm well, I tested light theme, is not the best :/ [14:28] l3on: it is just a foundation [14:28] you are welcome to improve it [14:28] ah ok :) [14:28] we don't want to have mirror image clones though [14:28] because it confuses people about the diff between official sites and "partnering" sites [14:28] there should be a familiarity, a connection, like a brother and a sister, not identical twins [14:29] yes, understood! [14:30] cool. We are happy to help and we love contributions if you care to provide improvements [14:46] newz2000: Are you available to discuss bug 670927 ? [14:46] Launchpad bug 670927 in ubuntu-website "Can not print the "Leadership Code Of Conduct" (affects: 1) (heat: 6)" [Undecided,Incomplete] https://launchpad.net/bugs/670927 === CaioAlonso_ is now known as CaioAlonso [14:46] charlie-tca: I am, but I think we'll get better results on the mailing list [14:47] charlie-tca: alejandra and yailli guide the visual and they are on the mailing list [14:47] they're the ones that need to be convinced of the priority of the change [14:48] I see. All right, I will join the list for this discussion. Although, I suspect the end result is "if you need to print something, too bad" [14:50] charlie-tca: yailli is a css expert and she loves pure, beautiful css and she's working on improving what we have (what we got from the contractors). [14:50] Okay. I will give it a shot then. I appreciate your time is valuable, and at least you are trying. [14:51] thanks charlie-tca [14:51] You are welcome [15:04] newz2000: what are your thoughts on the rtl issue and reset.css? [15:05] AlanBell: it sounds like we need to get rid of text-align: left to fix the prob, correct? [15:06] well reset should clear all css oddness, so if text is say right aligned it should go back to normal after applying reset.css [15:06] just I think normal is "start" and not "left" [15:07] https://wiki.ubuntu.com/htdocs/light/css/reset.css that is it [15:17] I wonder why its not like that [15:43] I guess someone thought that the default text alignment should be left, which is not quite the case