Giter Club home page Giter Club logo

Comments (4)

GuySerfaty avatar GuySerfaty commented on August 11, 2024 1

hey @jinwon7878, while working on:
https://x.com/10play_software/status/1808501667215593521

I noticed that:

* {
color: red;
}

Will change the color of the iOS selection to red, iOS probably inspect the * color of the webpage inside the webview and by that color the selection, this solution + override the color inside the class .ProseMirror will give you full control on selection

so the final solution will look something like this:

const editor = useEditorBridge({
  ...,
  bridgeExtensions: [
    ...TenTapStartKit,
    CodeBridge.configureCSS(`
    * {
      color: red;
    }

    #root div .ProseMirror * {
      color: #404040;
    }
    `), // Custom codeblock css
  ],
});

see: https://10play.github.io/10tap-editor/docs/examples/customCss

from 10tap-editor.

ororsatti avatar ororsatti commented on August 11, 2024

what platform? ios or android?
on android I have managed to change the color of the selection using:

*::selection { 
background-color: << color >>;
}

from 10tap-editor.

jinwon7878 avatar jinwon7878 commented on August 11, 2024

what platform? ios or android? on android I have managed to change the color of the selection using:

*::selection { 
background-color: << color >>;
}

Thank you for your response!

IOS. Unfortunately, that code doesn't work for me.

If you briefly release focus from a dragged (selected) state, such as a bottomsheet, you'll end up with the situation below, which looks like a highlight - is this relevant? My BridgeExtensions (including Custom) look like this

const bridgeExtensions = [
      CoreBridge.configureCSS(customCodeBlockCSS).extendExtension({
        content: โ€œtitle block*โ€,
      }),
      TitleBridge,
      ListItemBridge,
      BulletListBridge,
      OrderedListBridge,
      TaskListBridge,
      PlaceholderBridge.configureExtension({
        showOnlyCurrent: false,
      }),
      BoldBridge,
      ItalicBridge,
      UnderlineBridge,
      LinkBridge.configureExtension({ openOnClick: true }),
      // add customBridgeExtension here
  ];

IMG_0788
IMG_C95362B5B103-1

from 10tap-editor.

jinwon7878 avatar jinwon7878 commented on August 11, 2024

hey @jinwon7878, while working on: https://x.com/10play_software/status/1808501667215593521

I noticed that:

* {
color: red;
}

Will change the color of the iOS selection to red, iOS probably inspect the * color of the webpage inside the webview and by that color the selection, this solution + override the color inside the class .ProseMirror will give you full control on selection

so the final solution will look something like this:

const editor = useEditorBridge({
  ...,
  bridgeExtensions: [
    ...TenTapStartKit,
    CodeBridge.configureCSS(`
    * {
      color: red;
    }

    #root div .ProseMirror * {
      color: #404040;
    }
    `), // Custom codeblock css
  ],
});

see: https://10play.github.io/10tap-editor/docs/examples/customCss

@GuySerfaty I tried it, but this seems to be the way to change the font color - it doesn't change the background color while it's a selection via dragging, it's still there.

If there's something I'm missing, I'd appreciate it if you could let me know ๐Ÿ˜ข.

IMG_44EEFEAC3B95-1
IMG_D42D50258EDA-1

from 10tap-editor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.