Questions tagged [outline]

outline is a property in CSS, that is used to draw a line around the element. Question that has the problem related to outline property of CSS.

An outline is a line that is drawn around elements (outside the borders).

The outline is not a part of the element's dimensions, therefore the element's width and height properties do not contain the width of the outline.

This link contains the example of outline .

The tutorial is here.

473 questions
3
votes
2 answers

iOS - Slow animation on iPhone 4S (but fine on simulator)

I have subclassed a UILabel with the following code, which works fine - but any animations involving the subclass runs a lot slower than normal UILabels. I'm assuming Quartz is the culprit, but is there anything I could do to speed things up a…
achiral
  • 601
  • 2
  • 11
  • 24
3
votes
2 answers

How to outline dojo's class code in Aptana?

I am using aptana3.0.6, I create a class using dojo.declare, such as: dojo.declare("com.a.B", [dijit._Widget, dijit._Templated], { b1 : 'b1', b2 : function() { } }); When i open the outline view, there is nothing in it,it's empty. What…
qlqllu
  • 221
  • 2
  • 11
3
votes
1 answer

Remove outline of input field with "form control"

I have an input field as shown below. And in the class name I have it as form-control Whenever I focus into this field, I get…
Buddy Bob
  • 5,829
  • 1
  • 13
  • 44
3
votes
2 answers

Emacs outline-mode auto expand upon grep

I'm using outline-mode (org-mode mostly) in emacs, and use grep-mode to search. What annoys me is when I follow the links in the grep buffer, the folded texts do not unfold. Is there a way to automate that? A similar problem is to auto-unfold…
charles
  • 85
  • 2
  • 6
3
votes
1 answer

How to open outline/shadowsocks server on Microsoft Azure

I made one VM on Microsoft Azure on Linux. Then I connected to it, installed outline-server. But in outline manager it says that, maybe ports are closed. I went to portal.azure.com, made new rule for ports, which are used in Outline, but even with…
MR.X
  • 31
  • 2
3
votes
2 answers

Best method to get Outline effect with animated skinned mesh

What is the best method to get the outline effect with animated skinned mesh? An example with the model paused at a specific pose: https://jsfiddle.net/Eketol/uev9o0qp/ composer = new THREE.EffectComposer( renderer ); renderPass = new…
Eketol
  • 125
  • 10
3
votes
0 answers

Safari outline color

I am trying to change the color of the outline when an element is active on Safari. I need to keep all the styling of the default Safari outline, and just change the outline color. I have tried: a { &:focus { outline: auto red; …
Bud Anin- Aminof
  • 563
  • 5
  • 10
3
votes
1 answer

Position sticky and background-color of thead cell hides outline of tbody

How do you prevent the red outline from being hidden by the green background-color of the th and keep the border-collapse? Is there a CSS spec that defines this behavior? table { border-collapse: collapse } tbody { outline: solid…
Josh Unger
  • 6,717
  • 6
  • 33
  • 55
3
votes
1 answer

Qt draw outline for multiline text

QPainterPath can paint outline for the text QPainter can draw multiline text Is there any solution to make use of both of those features? I also looked up for QLabel styles, and still didn't find anything outline-related.
user1496491
  • 453
  • 2
  • 11
  • 23
3
votes
1 answer

text with outer stroke outline on iOS

Android implements outline via outer stroke. So you can have a really thick outline that looks like this: iOS implements outline via inner stroke. So a thick outline will totally consume the inner color: Is there any way to create an outer stroke…
P.Melch
  • 8,066
  • 43
  • 40
3
votes
2 answers

How do I add an outline to my label in Swift?

I'm new to Stackoverflow. I am currently developing a mobile application using XCode for iOS. However I'm trying to set add a white outline/stroke to my label but I do not know hot to. I have tried searching these forums but could not find any…
Karliene
  • 147
  • 1
  • 3
  • 10
3
votes
2 answers

Create a PHP Class Outline

I am looking for a function or class that can effectively outline a class: class MyClass{ /* * Perhaps include the function comments * in the function. */ function mainFunction(){ //Does Something } function…
Addo Solutions
  • 1,619
  • 3
  • 20
  • 37
3
votes
2 answers

Remove outline from select dropdown (Chrome on Windows 7)

I am trying to remove a blue outline from the option list of a select element. As I only see this outline on Chrome on Windows 7, here is an image which points out the outline I’m talking about Here is the code: https://jsfiddle.net/463pLc67/ I’ve…
3
votes
1 answer

Edge/outline detection from texture in fragment shader

I am trying to display sharp contours from a texture in WebGL. I pass a texture to my fragment shaders then I use local derivatives to display the contours/outline, however, it is not smooth as I would expect it to. Just printing the texture without…
Nicolas
  • 2,191
  • 3
  • 29
  • 49
3
votes
0 answers

HTML 5 area tag :focus outline color not visible in Safari

I use a tag on my site. Regarding accessibility, if you TAB through area's I want to change the outline-color to black. I am using scss (sass). I tried: *:focus { outline: none; } area { &:focus { outline: #000000 3px solid…
meez
  • 3,783
  • 5
  • 37
  • 91