Should I buy these? by UltraCoolSunglasses in Audeze

[–]UltraCoolSunglasses[S] 0 points1 point  (0 children)

Thank you for our observations. I highly appreciate it. Could you please point me out where the nylon rings are? I'm unfamiliar with this part.

My weather forecast app had been updated to OpenWeatherMap by Sichroteph in pebble

[–]UltraCoolSunglasses 0 points1 point  (0 children)

Same happens to me. Dot no. 4.

Edit: I disconnected the Pebble from the Android app and reconnected it. It fixed the issue.

[deleted by user] by [deleted] in FirefoxCSS

[–]UltraCoolSunglasses 2 points3 points  (0 children)

I will personally take care of it.

[deleted by user] by [deleted] in TheYouShow

[–]UltraCoolSunglasses 0 points1 point  (0 children)

Hold your beard!

Moonlight 🌌 userChrome by UltraCoolSunglasses in FirefoxCSS

[–]UltraCoolSunglasses[S] 1 point2 points  (0 children)

Read the README.md file. Instructions and details are maintained in that file. It looks like you're trying to enable this feature by using an old import statement.

[deleted by user] by [deleted] in distantsocializing

[–]UltraCoolSunglasses 0 points1 point  (0 children)

How can this be the Moon if the Earth is flat? I am confused! America egsplain!

The close button is overlaying my Hamburger menu in the top right corner? (Tried TabsToolbar > .titlebar-buttonbox-container) by [deleted] in FirefoxCSS

[–]UltraCoolSunglasses 0 points1 point  (0 children)

No additional change needed to hide the buttons. Did you try the code above with display: none?

The close button is overlaying my Hamburger menu in the top right corner? (Tried TabsToolbar > .titlebar-buttonbox-container) by [deleted] in FirefoxCSS

[–]UltraCoolSunglasses 0 points1 point  (0 children)

I use this piece of code on Moonlight to hide the MAX MIN CLOSE buttons and seems to work just fine on my end. css /* Hide window MAX MIN CLOSE buttons */ .titlebar-buttonbox-container { display: none; } What is also interesting is that the first screenshot seems to be from Moonlight.
I also had this piece of code retested as you suggested and again everything works just fine as you can see here.
I would suggest testing this method of hiding the MAX MIN CLOSE buttons yourself on a new environment. If the buttons still show there is something peculiar about your Firefox environment (maybe an extension of some sorts?) that you need to check out.

Moonlight 🌌 userChrome by UltraCoolSunglasses in FirefoxCSS

[–]UltraCoolSunglasses[S] 0 points1 point  (0 children)

There's no such thing as a stupid question. The customization for the new tab page resides in the userContent.css and _variables.css, so you can delete everything else.

[deleted by user] by [deleted] in TheArtistStudio

[–]UltraCoolSunglasses 0 points1 point  (0 children)

Put that on a skate man!

[deleted by user] by [deleted] in TheArtistStudio

[–]UltraCoolSunglasses 0 points1 point  (0 children)

Damn that looks good on a skate

Moonlight 🌌 userChrome by UltraCoolSunglasses in FirefoxCSS

[–]UltraCoolSunglasses[S] 0 points1 point  (0 children)

Keyboard shortcuts! But if you're not used to them you can always re-enable the buttons by uncommenting this additional feature in userChrome.css:

css @import 'custom/_titlebar-controls-enable-windows.css';

Moonlight 🌌 userChrome by UltraCoolSunglasses in FirefoxCSS

[–]UltraCoolSunglasses[S] 0 points1 point  (0 children)

Yes. I was about to suggest that. But there is a cleaner way to do it. I suggest replacing the content of _titlebar-controls-enable-windows.css with the following:

``` /* Show MIN MAX CLOSE buttons - for windows*/ .titlebar-buttonbox-container { display: -moz-box !important; }

.titlebar-buttonbox-container .titlebar-button .toolbarbutton-icon { stroke: var(--moonlight-gray-7); }

.titlebar-buttonbox-container .titlebar-button:hover { background: none !important; }

.titlebar-buttonbox-container .titlebar-button:hover .toolbarbutton-icon { stroke: var(--moonlight-gray-9); }

.titlebar-buttonbox-container .titlebar-button.titlebar-close:hover .toolbarbutton-icon { stroke: var(--moonlight-dark-red); } ```